Package org.reactfx.util
Interface AccuMap<K,V,A>
-
- Type Parameters:
K
- key typeV
- type of individual (non-accumulated) valuesA
- type of accumulated values
- All Known Implementing Classes:
EmptyAccuMap
,HashAccuMap
,IteratorBasedAccuMap
public interface AccuMap<K,V,A>
Accumulation map.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description AccuMap<K,V,A>
addAll(java.util.Iterator<K> keys, V value, AccumulationFacility<V,A> af)
AccuMap<K,V,A>
dropPeeked()
static <K,V,A>
AccuMap<K,V,A>empty()
boolean
isEmpty()
Tuple2<K,A>
peek(AccumulationFacility<V,A> af)
AccuMap<K,V,A>
updatePeeked(A newAccumulatedValue)
-
-
-
Method Detail
-
empty
static <K,V,A> AccuMap<K,V,A> empty()
-
isEmpty
boolean isEmpty()
-
-