Uses of Interface
org.tquadrat.foundation.stream.MapStream
Packages that use MapStream
Package
Description
The code in this package was originally written by Dominic Fox and provided
in the package
com.codepoetics.protonpack
.The internal classes for the stream extensions.
-
Uses of MapStream in org.tquadrat.foundation.stream
Methods in org.tquadrat.foundation.stream that return MapStreamModifier and TypeMethodDescriptionMapStream.distinct()
MapStream.filter
(BiPredicate<? super K, ? super V> predicate) Returns a stream consisting of the elements of this stream that match the given predicate.
This is an intermediate operation.MapStream.inverseMapping()
Returns aMapStream
from which the key and values are reversed.MapStream.limit
(long limit) default <K1,
V1> MapStream <K1, V1> MapStream.mapEntries
(Function<? super K, ? extends K1> keyMapper, Function<? super V, ? extends V1> valueMapper) Applies the mapping for each key and value in the map.Applies the mapping for each key in the map.Applies the mapping for each value in the map.MapStream.mergeKeys()
Merges the keys of the stream into a new stream.MapStream.mergeKeys
(BinaryOperator<V> mergeFunction) Merges keys of the stream into a new stream with the provided merge function.static <K,
V> MapStream <K, V> MapStream.of
(Collection<Map.Entry<K, V>> nvps) Factory for aMapStream<K,V>
; constructs a stream from aCollection
of key-value pairsstatic <K,
V> MapStream <K, V> Factory for aMapStream<K,V>
; constructs a stream from some key-value pairsstatic <K,
V> MapStream <K, V> Factory for aMapStream<K,V>
; constructs a stream from an instance ofMap
.static <K,
V> MapStream <K, V> MapStream.of
(K key, V value) Factory for aMapStream<K,V>
; constructs a stream from a single key-value pair.static <K,
V> MapStream <K, V> MapStream.of
(K key1, V value1, K key2, V value2) Factory for aMapStream<K,V>
; constructs a stream from two key-value pairsstatic <K,
V> MapStream <K, V> MapStream.of
(K key1, V value1, K key2, V value2, K key3, V value3) Factory for aMapStream<K,V>
; constructs a stream from three key-value pairsstatic <K,
V> MapStream <K, V> MapStream.of
(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4) Factory for aMapStream<K,V>
; constructs a stream from four key-value pairsstatic <K,
V> MapStream <K, V> MapStream.of
(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4, K key5, V value5) Factory for aMapStream<K,V>
; constructs a stream from five key-value pairsstatic <K,
V> MapStream <K, V> Factory for aMapStream<K,V>
; constructs a stream from several instances ofMap
.MapStream.parallel()
MapStream.sequential()
MapStream.skip
(long n) MapStream.sorted()
MapStream.sorted
(Comparator<? super Map.Entry<K, V>> comparator) MapStream.unordered()
-
Uses of MapStream in org.tquadrat.foundation.stream.internal
Classes in org.tquadrat.foundation.stream.internal that implement MapStreamModifier and TypeClassDescriptionfinal class
DefaultMapStream<K,
V> The default implementation forMapStream
.Methods in org.tquadrat.foundation.stream.internal that return MapStreamModifier and TypeMethodDescriptionDefaultMapStream.distinct()
DefaultMapStream.limit
(long maxSize) DefaultMapStream.parallel()
DefaultMapStream.sequential()
DefaultMapStream.skip
(long n) DefaultMapStream.sorted()
DefaultMapStream.sorted
(Comparator<? super Map.Entry<K, V>> comparator) DefaultMapStream.unordered()