Uses of Interface
org.reactfx.util.ToSemigroup
-
Packages that use ToSemigroup Package Description org.reactfx.collection org.reactfx.util -
-
Uses of ToSemigroup in org.reactfx.collection
Fields in org.reactfx.collection declared as ToSemigroup Modifier and Type Field Description private ToSemigroup<T,T>
ListReduction. monoid
-
Uses of ToSemigroup in org.reactfx.util
Fields in org.reactfx.util declared as ToSemigroup Modifier and Type Field Description private static ToSemigroup<java.util.List<?>,java.lang.Integer>
ListConcatenation. LIST_SIZE_MONOID
private static ToSemigroup<SparseList.Segment<?>,SparseList.Stats>
SparseList. SEGMENT_STATS
(package private) ToSemigroup<? super T,S>
FingerTree. semigroup
Methods in org.reactfx.util with parameters of type ToSemigroup Modifier and Type Method Description static <T,S>
FingerTree<T,S>FingerTree. empty(ToSemigroup<? super T,S> statisticsProvider)
static <T,S>
FingerTree<T,S>FingerTree. mkTree(java.util.List<? extends T> items, ToSemigroup<? super T,S> summaryProvider)
Constructors in org.reactfx.util with parameters of type ToSemigroup Constructor Description Empty(ToSemigroup<? super T,S> semigroup)
FingerTree(ToSemigroup<? super T,S> semigroup)
Leaf(ToSemigroup<? super T,S> semigroup, T data)
NonEmptyFingerTree(ToSemigroup<? super T,S> semigroup)
-