Uses of Class
at.jku.ssw.fp.util.Pair
-
Packages that use Pair Package Description at.jku.ssw.fp.sect03_1 at.jku.ssw.fp.sect05_2.workflow at.jku.ssw.fp.sect05_3.parser at.jku.ssw.fp.sect06_3 at.jku.ssw.fp.sect07_7 at.jku.ssw.fp.sect11_3.check4j at.jku.ssw.fp.util -
-
Uses of Pair in at.jku.ssw.fp.sect03_1
Methods in at.jku.ssw.fp.sect03_1 that return Pair Modifier and Type Method Description (package private) static Pair<String,String>
Demo1_GetWord. getWordPure(String text)
-
Uses of Pair in at.jku.ssw.fp.sect05_2.workflow
Methods in at.jku.ssw.fp.sect05_2.workflow that return types with arguments of type Pair Modifier and Type Method Description default <P> Step<I,Pair<O,P>>
Step. both(Step<? super I,? extends P> that)
Creates a combined step which executes this step and the step given as a parameter and combines the result of both in aPair
. -
Uses of Pair in at.jku.ssw.fp.sect05_3.parser
Methods in at.jku.ssw.fp.sect05_3.parser that return types with arguments of type Pair Modifier and Type Method Description default <S> Parser<Pair<E,S>>
Parser. seq(Parser<S> second)
Creates a new parser which applies this parser and the second parser and combined both results in aPair
. -
Uses of Pair in at.jku.ssw.fp.sect06_3
Methods in at.jku.ssw.fp.sect06_3 that return types with arguments of type Pair Modifier and Type Method Description default <S> Parser<Pair<E,S>>
Parser. seq(Parser<S> second)
Creates a new parser which applies this parser and the second parser and combined both results in aPair
. -
Uses of Pair in at.jku.ssw.fp.sect07_7
Methods in at.jku.ssw.fp.sect07_7 that return types with arguments of type Pair Modifier and Type Method Description static <A> Stream<Pair<Integer,A>>
StreamUtil. number2(Stream<A> as)
Creates a stream of numbered values from a stream of values.static <A,B>
Stream<Pair<A,B>>StreamUtil. zip(Stream<A> as, Stream<B> bs)
Creates a stream of pairs of values from two streams. -
Uses of Pair in at.jku.ssw.fp.sect11_3.check4j
Methods in at.jku.ssw.fp.sect11_3.check4j that return types with arguments of type Pair Modifier and Type Method Description static <A,B>
Gen<Pair<A,B>>Gens. pair(Gen<A> aGen, Gen<B> bGen)
A generator of pairs of values. -
Uses of Pair in at.jku.ssw.fp.util
Methods in at.jku.ssw.fp.util that return Pair Modifier and Type Method Description static <A,B>
Pair<A,B>Pair. of(A fst, B snd)
Creates a pair of two values.
-