Uses of Class
org.jparsec.functors.Tuple5
-
Packages that use Tuple5 Package Description org.jparsec Provides core Parser implementations for parser combinator logic.org.jparsec.functors Provides common functor interfaces, such as Map for mapping parser results as well as some common implementations. -
-
Uses of Tuple5 in org.jparsec
Methods in org.jparsec that return types with arguments of type Tuple5 Modifier and Type Method Description static <A,B,C,D,E>
Parser<Tuple5<A,B,C,D,E>>Parsers. tuple(Parser<? extends A> p1, Parser<? extends B> p2, Parser<? extends C> p3, Parser<? extends D> p4, Parser<? extends E> p5)
Deprecated.Prefer to converting to your own object with a lambda. -
Uses of Tuple5 in org.jparsec.functors
Methods in org.jparsec.functors that return Tuple5 Modifier and Type Method Description static <A,B,C,D,E>
Tuple5<A,B,C,D,E>Tuples. tuple(A a, B b, C c, D d, E e)
Deprecated.Returns aTuple5
of 5 objects.Methods in org.jparsec.functors that return types with arguments of type Tuple5 Modifier and Type Method Description static <A,B,C,D,E>
Map5<A,B,C,D,E,Tuple5<A,B,C,D,E>>Maps. toTuple5()
Deprecated.Methods in org.jparsec.functors with parameters of type Tuple5 Modifier and Type Method Description (package private) boolean
Tuple5. equals(Tuple5<?,?,?,?,?> other)
Deprecated.
-