Uses of Class
org.reactfx.util.LL
-
Packages that use LL Package Description org.reactfx org.reactfx.util -
-
Uses of LL in org.reactfx
Fields in org.reactfx declared as LL Modifier and Type Field Description private LL<EmissionBuilder<S,O>>
StatefulStreamBuilderImpl. emissions
private LL<EmissionBuilder<S,O>>
StatefulStreamBuilderOnImpl. emissions
private LL<TransitionBuilder<S>>
ObservableStateBuilderImpl. transitions
private LL<TransitionBuilder<S>>
ObservableStateBuilderOnImpl. transitions
private LL<TransitionBuilder<S>>
StatefulStreamBuilderImpl. transitions
private LL<TransitionBuilder<S>>
StatefulStreamBuilderOnImpl. transitions
private LL<TransmissionBuilder<S,O>>
StatefulStreamBuilderImpl. transmissions
private LL<TransmissionBuilder<S,O>>
StatefulStreamBuilderOnImpl. transmissions
Constructors in org.reactfx with parameters of type LL Constructor Description ObservableStateBuilderImpl(S initialState, LL<TransitionBuilder<S>> transitions)
ObservableStateBuilderOnImpl(S initialState, LL<TransitionBuilder<S>> transitions, EventStream<I> input)
StatefulStream(S initialState, LL<TransitionBuilder<S>> transitions, LL<EmissionBuilder<S,O>> emissions, LL<TransmissionBuilder<S,O>> transmissions)
StatefulStreamBuilderImpl(S initialState, LL<TransitionBuilder<S>> transitions, LL<EmissionBuilder<S,O>> emissions, LL<TransmissionBuilder<S,O>> transmissions)
StatefulStreamBuilderOnImpl(S initialState, LL<TransitionBuilder<S>> transitions, LL<EmissionBuilder<S,O>> emissions, LL<TransmissionBuilder<S,O>> transmissions, EventStream<I> input)
StateStream(S initialState, LL<TransitionBuilder<S>> transitions)
-
Uses of LL in org.reactfx.util
Subclasses of LL in org.reactfx.util Modifier and Type Class Description static class
LL.Cons<T>
private static class
LL.Nil<T>
Fields in org.reactfx.util declared as LL Modifier and Type Field Description private LL<? extends T>
LL.Cons. tail
Methods in org.reactfx.util that return LL Modifier and Type Method Description static <T> LL<? extends T>
LL. concat(LL<? extends T> l1, LL<? extends T> l2)
abstract <U> LL<U>
LL. map(java.util.function.Function<? super T,? extends U> f)
<U> LL<U>
LL.Nil. map(java.util.function.Function<? super T,? extends U> f)
static <T> LL<T>
LL. nil()
private static <T> LL<T>
LL. of(T[] elems, int to, LL<T> tail)
LL<? extends T>
LL.Cons. tail()
LL<T>
LL.Nil. tail()
abstract LL<? extends T>
LL. tail()
Methods in org.reactfx.util with parameters of type LL Modifier and Type Method Description static <T> LL<? extends T>
LL. concat(LL<? extends T> l1, LL<? extends T> l2)
static <T> LL.Cons<T>
LL. cons(T head, LL<? extends T> tail)
private <R> R
FingerTree.Branch. foldBetween0(R acc, java.util.function.BiFunction<? super R,? super T,? extends R> reduction, int startLeaf, int endLeaf, LL<? extends FingerTree<T,S>> nodes)
private <R> R
FingerTree.Branch. foldBetween0(R acc, java.util.function.BiFunction<? super R,? super T,? extends R> reduction, java.util.function.ToIntFunction<? super S> metric, int startPosition, int endPosition, TetraFunction<? super R,? super T,java.lang.Integer,java.lang.Integer,? extends R> rangeReduction, LL<? extends FingerTree<T,S>> nodes)
private T
FingerTree.Branch. getLeaf0(int index, LL<? extends FingerTree<T,S>> nodes)
private S
FingerTree.Branch. getSummaryBetween0(int startLeaf, int endLeaf, LL<? extends FingerTree<T,S>> nodes)
private S
FingerTree.Branch. getSummaryBetween0(java.util.function.ToIntFunction<? super S> metric, int startPosition, int endPosition, TriFunction<? super T,java.lang.Integer,java.lang.Integer,? extends S> subSummary, LL<? extends FingerTree<T,S>> nodes)
private BiIndex
FingerTree.Branch. locate0(java.util.function.BiFunction<? super S,java.lang.Integer,Either<java.lang.Integer,java.lang.Integer>> navigate, int position, LL<? extends FingerTree.NonEmptyFingerTree<T,S>> nodes)
private BiIndex
FingerTree.Branch. locateProgressively0(java.util.function.ToIntFunction<? super S> metric, int position, LL<? extends FingerTree.NonEmptyFingerTree<T,S>> nodes)
private BiIndex
FingerTree.Branch. locateRegressively0(java.util.function.ToIntFunction<? super S> metric, int position, LL<? extends FingerTree.NonEmptyFingerTree<T,S>> nodes)
private static <T> LL<T>
LL. of(T[] elems, int to, LL<T> tail)
private Tuple2<FingerTree<T,S>,FingerTree<T,S>>
FingerTree.Branch. split0(int beforeLeaf, LL<? extends FingerTree<T,S>> nodes)
private LL.Cons<FingerTree.NonEmptyFingerTree<T,S>>
FingerTree.Branch. updateLeaf0(int index, T data, LL<? extends FingerTree.NonEmptyFingerTree<T,S>> nodes)
Constructors in org.reactfx.util with parameters of type LL Constructor Description Cons(T head, LL<? extends T> tail)
-