Interface Multimap<K,V>
- Type Parameters:
K- Key typeV- Value type
- All Superinterfaces:
Foldable<Tuple2<K,V>>, Function<K, Traversable<V>>, Function1<K, Traversable<V>>, Iterable<Tuple2<K, V>>, PartialFunction<K, Traversable<V>>, Serializable, Traversable<Tuple2<K, V>>, Value<Tuple2<K, V>>
- All Known Subinterfaces:
SortedMultimap<K,V>
- All Known Implementing Classes:
AbstractMultimap, HashMultimap, LinkedHashMultimap, TreeMultimap
Multimap interface.
Basic operations:
containsKey(Object)containsValue(Object)get(Object)getContainerType()keySet()merge(Multimap)merge(Multimap, BiFunction)put(Object, Object)put(Tuple2)values()
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enumDefines the type of container used to store values associated with keys in a Multimap. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final longThe serial version UID for serialization. -
Method Summary
Modifier and TypeMethodDescriptiondefault Traversable<V> Deprecated.Map<K, Traversable<V>> asMap()Converts thisMultimapto aMapdefault PartialFunction<K, Traversable<V>> Turns thisMultimapinto aPartialFunctionwhich is defined at a specific index, if thisMultimapcontains the given key.<K2,V2> Multimap <K2, V2> Maps thisMultimapto a newMultimapwith different component type by applying a function to its elements.default <R> Seq<R> collect(@NonNull PartialFunction<? super Tuple2<K, V>, ? extends R> partialFunction) Applies aPartialFunctionto all elements that are defined for it and collects the results.default booleanShortcut forexists(e -> Objects.equals(e, element)), tests if the givenelementis contained.booleancontainsKey(K key) Returnstrueif this multimap contains a mapping for the specified key.default booleancontainsValue(V value) Returnstrueif this multimap maps one or more keys to the specified value.distinct()Returns a newTraversablecontaining the elements of this instance with all duplicates removed.distinctBy(@NonNull Comparator<? super Tuple2<K, V>> comparator) Returns a newTraversablecontaining the elements of this instance without duplicates, as determined by the givencomparator.distinctBy(@NonNull Function<? super Tuple2<K, V>, ? extends U> keyExtractor) Returns a newTraversablecontaining the elements of this instance without duplicates, based on keys extracted from elements usingkeyExtractor.drop(int n) Returns a newTraversablewithout the firstnelements, or an empty instance if this contains fewer thannelements.dropRight(int n) Returns a newTraversablewithout the lastnelements, or an empty instance if this contains fewer thannelements.Returns a newTraversablestarting from the first element that satisfies the givenpredicate, dropping all preceding elements.Returns a newTraversablestarting from the first element that does not satisfy the givenpredicate, dropping all preceding elements.filter(@NonNull BiPredicate<? super K, ? super V> predicate) Returns a new Multimap consisting of all elements which satisfy the given predicate.Returns a new traversable containing only the elements that satisfy the given predicate.filterKeys(@NonNull Predicate<? super K> predicate) Returns a new Multimap consisting of all elements with keys which satisfy the given predicate.filterValues(@NonNull Predicate<? super V> predicate) Returns a new Multimap consisting of all elements with values which satisfy the given predicate.<K2,V2> Multimap <K2, V2> FlatMaps thisMultimapto a newMultimapwith different component type.default <U> Seq<U> Flat-maps this entries to a sequence of values.default <U> UfoldRight(U zero, @NonNull BiFunction<? super Tuple2<K, V>, ? super U, ? extends U> f) Folds the elements of this structure from the right, starting with the givenzerovalue and successively applying thecombinefunction to each element.default voidforEach(@NonNull BiConsumer<K, V> action) Performs an action on key, value pair.Returns theSomeof value to which the specified key is mapped, orNoneif this multimap contains no mapping for the key.Returns the type of theTraversablevalue container of thisMultiMap.getOrElse(K key, Traversable<? extends V> defaultValue) Returns the value associated with a key, or a default value if the key is not contained in the mapGroups elements of thisTraversablebased on a classifier function.grouped(int size) Splits thisTraversableinto consecutive blocks of the given size.default booleanIndicates whether thisTraversablehas a known finite size.init()Returns all elements of this Traversable except the last one.Returns all elements of this Traversable except the last one, wrapped in anOption.default booleanisDefinedAt(K key) Deprecated.default booleanIndicates whether this Traversable may contain only distinct elements.default booleanChecks if this Traversable can be traversed multiple times without side effects.iterator()Returns an iterator over the elements of this Traversable, implemented viaTraversable.head()andTraversable.tail().default <U> Iterator<U> iterator(@NonNull BiFunction<K, V, ? extends U> mapper) Iterates this Multimap sequentially, mapping the (key, value) pairs to elements.keySet()Returns the keys contained in this multimap.default intlength()Returns the number of elements in this Traversable.<K2,V2> Multimap <K2, V2> map(@NonNull BiFunction<? super K, ? super V, Tuple2<K2, V2>> mapper) Maps the entries of thisMultimapto form a newMultimap.default <U> Seq<U> Maps theMultimapentries to a sequence of values.default <U> Seq<U> mapTo(U value) Maps the underlying value to another fixed value.Maps the underlying value to VoidMaps the values of thisMultimapwhile preserving the corresponding keys.Creates a new multimap which by merging the entries ofthismultimap andthatmultimap.merge(@NonNull Multimap<K2, V2> that, @NonNull BiFunction<Traversable<V>, Traversable<V2>, Traversable<V>> collisionResolution) Creates a new multimap which by merging the entries ofthismultimap andthatmultimap.static <K,V> Multimap <K, V> Narrows a widenedMultimap<? extends K, ? extends V>toMultimap<K, V>by performing a type-safe cast.Returns thisTraversableif it is non-empty; otherwise, returns the given alternative.Returns thisTraversableif it is non-empty; otherwise, returns the result of evaluating the given supplier.Splits thisTraversableinto two partitions according to a predicate.Performs the givenactionon the first element if this is an eager implementation.Convenience method forput(entry._1, entry._2).Associates the specified value with the specified key in this multimap.reject(@NonNull BiPredicate<? super K, ? super V> predicate) Returns a new Multimap consisting of all elements which do not satisfy the given predicate.Returns a new traversable containing only the elements that do not satisfy the given predicate.rejectKeys(@NonNull Predicate<? super K> predicate) Returns a new Multimap consisting of all elements with keys which do not satisfy the given predicate.rejectValues(@NonNull Predicate<? super V> predicate) Returns a new Multimap consisting of all elements with values which do not satisfy the given predicate.Removes the mapping for a key from this multimap if it is present.Removes the key-value pair from this multimap if it is present.Removes the mapping for a key from this multimap if it is present.removeAll(@NonNull BiPredicate<? super K, ? super V> predicate) Deprecated.removeKeys(@NonNull Predicate<? super K> predicate) Deprecated.Please userejectKeys(Predicate)removeValues(@NonNull Predicate<? super V> predicate) Deprecated.Please userejectValues(Predicate)Replaces the first occurrence ofcurrentElementwithnewElement, if it exists.Replaces the entry with the specified key and oldValue.Replaces all occurrences ofcurrentElementwithnewElement.replaceAll(@NonNull BiFunction<? super K, ? super V, ? extends V> function) Replaces each entry's values with the result of invoking the given function on that each tuple until all entries have been processed or the function throws an exception.replaceValue(K key, V value) Replaces the entry for the specified key only if it is currently mapped to some value.Retains only the elements from this Traversable that are contained in the givenelements.scan(Tuple2<K, V> zero, @NonNull BiFunction<? super Tuple2<K, V>, ? super Tuple2<K, V>, ? extends Tuple2<K, V>> operation) Computes a prefix scan of the elements of this Traversable.default <U> Seq<U> scanLeft(U zero, @NonNull BiFunction<? super U, ? super Tuple2<K, V>, ? extends U> operation) Produces a collection containing cumulative results of applying the operator from left to right.default <U> Seq<U> scanRight(U zero, @NonNull BiFunction<? super Tuple2<K, V>, ? super U, ? extends U> operation) Produces a collection containing cumulative results of applying the operator from right to left.intsize()Returns the number of elements in this Traversable.Partitions thisTraversableinto consecutive non-overlapping windows according to a classification function.sliding(int size) Slides a window of a givensizeover thisTraversablewith a step size of 1.sliding(int size, int step) Slides a window of a specificsizewith a givenstepover thisTraversable.Splits thisTraversableinto a prefix and remainder according to the givenpredicate.tail()Returns a newTraversablewithout its first element.Returns a newTraversablewithout its first element as anOption.take(int n) Returns the firstnelements of thisTraversable, or all elements ifnexceeds the length.takeRight(int n) Returns the lastnelements of thisTraversable, or all elements ifnexceeds the length.Takes elements from thisTraversableuntil the given predicate holds for an element.Takes elements from thisTraversablewhile the given predicate holds.Map<K, Collection<V>> Converts this VavrMapto ajava.util.Mapwhile preserving characteristics like insertion order (LinkedHashMultimap) and sort order (SortedMultimap).default <U> UTransforms thisMultimap.unzip(@NonNull BiFunction<? super K, ? super V, Tuple2<? extends T1, ? extends T2>> unzipper) Unzips the entries of thisMultimapby mapping each key-value pair to a pair and splitting them into two separateSeqcollections.Unzips the elements of thisTraversableby mapping each element to a pair and splitting them into two separateTraversablecollections.unzip3(@NonNull BiFunction<? super K, ? super V, Tuple3<? extends T1, ? extends T2, ? extends T3>> unzipper) Unzips the entries of thisMultimapby mapping each key-value pair to a triple and splitting them into three separateSeqcollections.unzip3(@NonNull Function<? super Tuple2<K, V>, Tuple3<? extends T1, ? extends T2, ? extends T3>> unzipper) Unzips the elements of thisTraversableby mapping each element to a triple and splitting them into three separateTraversablecollections.values()Returns aTraversablecontaining all the values of thisMultimap.Returns aTraversableformed by pairing elements of thisTraversablewith elements of anotherIterable.Returns aTraversableformed by pairing elements of thisTraversablewith elements of anotherIterable, filling in placeholder elements when one collection is shorter than the other.default <U,R> Seq <R> zipWith(@NonNull Iterable<? extends U> that, BiFunction<? super Tuple2<K, V>, ? super U, ? extends R> mapper) Returns aTraversableby combining elements of thisTraversablewith elements of anotherIterableusing a mapping function.Zips thisTraversablewith its indices, starting at 0.default <U> Seq<U> zipWithIndex(@NonNull BiFunction<? super Tuple2<K, V>, ? super Integer, ? extends U> mapper) Zips thisTraversablewith its indices and maps the resulting pairs using the provided mapper.Methods inherited from interface Foldable
fold, reduce, reduceOptionMethods inherited from interface Function1
andThen, arity, compose, compose1, curried, isMemoized, memoized, partial, reversed, tupledMethods inherited from interface PartialFunction
liftMethods inherited from interface Traversable
arrangeBy, average, containsAll, count, equals, existsUnique, find, findLast, foldLeft, forEachWithIndex, get, hashCode, head, headOption, isEmpty, isOrdered, isSequential, isSingleValued, last, lastOption, max, maxBy, maxBy, min, minBy, minBy, mkCharSeq, mkCharSeq, mkCharSeq, mkString, mkString, mkString, nonEmpty, product, reduceLeft, reduceLeftOption, reduceRight, reduceRightOption, single, singleOption, spliterator, sumMethods inherited from interface Value
collect, collect, corresponds, eq, exists, forAll, forEach, getOrElse, getOrElse, getOrElseThrow, getOrElseTry, getOrNull, isAsync, isLazy, out, out, stderr, stdout, stringPrefix, toArray, toCharSeq, toCompletableFuture, toEither, toEither, toInvalid, toInvalid, toJavaArray, toJavaArray, toJavaArray, toJavaCollection, toJavaList, toJavaList, toJavaMap, toJavaMap, toJavaMap, toJavaOptional, toJavaParallelStream, toJavaSet, toJavaSet, toJavaStream, toLeft, toLeft, toLinkedMap, toLinkedMap, toLinkedSet, toList, toMap, toMap, toOption, toPriorityQueue, toPriorityQueue, toQueue, toRight, toRight, toSet, toSortedMap, toSortedMap, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toStream, toString, toTree, toTree, toTry, toTry, toValid, toValid, toValidation, toValidation, toVector
-
Field Details
-
serialVersionUID
static final long serialVersionUIDThe serial version UID for serialization.- See Also:
-
-
Method Details
-
narrow
Narrows a widenedMultimap<? extends K, ? extends V>toMultimap<K, V>by performing a type-safe cast. This is eligible because immutable/read-only collections are covariant.- Type Parameters:
K- Key typeV- Value type- Parameters:
map- AMultimap.- Returns:
- the given
multimapinstance as narrowed typeMultimap<K, V>.
-
apply
Deprecated.Description copied from interface:PartialFunctionApplies this function to the given argument and returns the result. -
asMap
-
asPartialFunction
Turns thisMultimapinto aPartialFunctionwhich is defined at a specific index, if thisMultimapcontains the given key. When applied to a defined key, the partial function will return theTraversableof thisMultimapthat is associated with the key.- Returns:
- a new
PartialFunction - Throws:
NoSuchElementException- when a non-existing key is applied to the partial functionIndexOutOfBoundsException
-
bimap
<K2,V2> Multimap<K2,V2> bimap(Function<? super K, ? extends K2> keyMapper, Function<? super V, ? extends V2> valueMapper) Maps thisMultimapto a newMultimapwith different component type by applying a function to its elements.- Type Parameters:
K2- key's component type of the multimap resultV2- value's component type of the multimap result- Parameters:
keyMapper- aFunctionthat maps the keys of typeKto keys of typeK2valueMapper- aFunctionthat the values of typeVto values of typeV2- Returns:
- a new
Multimap - Throws:
NullPointerException- ifkeyMapperorvalueMapperis null
-
collect
default <R> Seq<R> collect(@NonNull PartialFunction<? super Tuple2<K, V>, ? extends R> partialFunction) Description copied from interface:TraversableApplies aPartialFunctionto all elements that are defined for it and collects the results.For each element in iteration order, the function is first tested:
IfpartialFunction.isDefinedAt(element)true, the element is mapped to typeR:R newElement = partialFunction.apply(element)Note: If this
Traversableis ordered (i.e., extendsOrdered), the caller must ensure that the resulting elements are comparable (i.e., implementComparable).- Specified by:
collectin interfaceTraversable<K>- Type Parameters:
R- the type of elements in the resultingTraversable- Parameters:
partialFunction- a function that may not be defined for all elements of this traversable- Returns:
- a new
Traversablecontaining the results of applying the partial function
-
contains
Description copied from interface:ValueShortcut forexists(e -> Objects.equals(e, element)), tests if the givenelementis contained. -
containsKey
Returnstrueif this multimap contains a mapping for the specified key.- Parameters:
key- key whose presence in this multimap is to be tested- Returns:
trueif this multimap contains a mapping for the specified key
-
containsValue
Returnstrueif this multimap maps one or more keys to the specified value. This operation will require time linear in the map size.- Parameters:
value- value whose presence in this multimap is to be tested- Returns:
trueif this multimap maps one or more keys to the specified value
-
filter
Returns a new Multimap consisting of all elements which satisfy the given predicate.- Parameters:
predicate- the predicate used to test elements- Returns:
- a new Multimap
- Throws:
NullPointerException- ifpredicateis null
-
reject
Returns a new Multimap consisting of all elements which do not satisfy the given predicate.- Parameters:
predicate- the predicate used to test elements- Returns:
- a new Multimap
- Throws:
NullPointerException- ifpredicateis null
-
filterKeys
Returns a new Multimap consisting of all elements with keys which satisfy the given predicate.- Parameters:
predicate- the predicate used to test keys of elements- Returns:
- a new Multimap
- Throws:
NullPointerException- ifpredicateis null
-
rejectKeys
Returns a new Multimap consisting of all elements with keys which do not satisfy the given predicate.- Parameters:
predicate- the predicate used to test keys of elements- Returns:
- a new Multimap
- Throws:
NullPointerException- ifpredicateis null
-
filterValues
Returns a new Multimap consisting of all elements with values which satisfy the given predicate.- Parameters:
predicate- the predicate used to test values of elements- Returns:
- a new Multimap
- Throws:
NullPointerException- ifpredicateis null
-
rejectValues
Returns a new Multimap consisting of all elements with values which do not satisfy the given predicate.- Parameters:
predicate- the predicate used to test values of elements- Returns:
- a new Multimap
- Throws:
NullPointerException- ifpredicateis null
-
flatMap
<K2,V2> Multimap<K2,V2> flatMap(@NonNull BiFunction<? super K, ? super V, ? extends Iterable<Tuple2<K2, V2>>> mapper) FlatMaps thisMultimapto a newMultimapwith different component type.- Type Parameters:
K2- key's component type of the mappedMultimapV2- value's component type of the mappedMultimap- Parameters:
mapper- A mapper- Returns:
- A new
Multimap. - Throws:
NullPointerException- ifmapperis null
-
forEach
Performs an action on key, value pair.- Parameters:
action- ABiConsumer- Throws:
NullPointerException- ifactionis null
-
get
Returns theSomeof value to which the specified key is mapped, orNoneif this multimap contains no mapping for the key.- Parameters:
key- the key whose associated value is to be returned- Returns:
- the
Someof value to which the specified key is mapped, orNoneif this multimap contains no mapping for the key
-
getOrElse
Returns the value associated with a key, or a default value if the key is not contained in the map- Parameters:
key- the keydefaultValue- a default value- Returns:
- the value associated with key if it exists, otherwise the result of the default value
-
getContainerType
Multimap.ContainerType getContainerType()Returns the type of theTraversablevalue container of thisMultiMap.- Returns:
- an enum value representing the container type
-
hasDefiniteSize
default boolean hasDefiniteSize()Description copied from interface:TraversableIndicates whether thisTraversablehas a known finite size.This should typically be implemented by concrete classes, not interfaces.
- Specified by:
hasDefiniteSizein interfaceTraversable<K>- Returns:
trueif the number of elements is finite and known,falseotherwise.
-
isDefinedAt
Deprecated.Description copied from interface:PartialFunctionTests whether a value is contained in the function's domain.- Specified by:
isDefinedAtin interfacePartialFunction<K,V> - Parameters:
key- a potential input to the function- Returns:
trueif the given value is contained in the function's domain,falseotherwise
-
isDistinct
default boolean isDistinct()Description copied from interface:TraversableIndicates whether this Traversable may contain only distinct elements.- Specified by:
isDistinctin interfaceTraversable<K>- Returns:
trueif this Traversable may contain only distinct elements,falseotherwise
-
isTraversableAgain
default boolean isTraversableAgain()Description copied from interface:TraversableChecks if this Traversable can be traversed multiple times without side effects.Implementations should provide the correct behavior; this is not meant for interfaces alone.
- Specified by:
isTraversableAgainin interfaceTraversable<K>- Returns:
trueif this Traversable is guaranteed to be repeatably traversable,falseotherwise
-
iterator
Description copied from interface:TraversableReturns an iterator over the elements of this Traversable, implemented viaTraversable.head()andTraversable.tail(). Subclasses may override for a more efficient implementation. -
iterator
Iterates this Multimap sequentially, mapping the (key, value) pairs to elements.- Type Parameters:
U- The type of the resulting elements- Parameters:
mapper- A function that maps (key, value) pairs to elements of type U- Returns:
- An iterator through the mapped elements.
-
keySet
-
length
default int length()Description copied from interface:TraversableReturns the number of elements in this Traversable.Equivalent to
Traversable.size().- Specified by:
lengthin interfaceTraversable<K>- Returns:
- the number of elements
-
map
Maps the entries of thisMultimapto form a newMultimap.- Type Parameters:
K2- key's component type of the multimap resultV2- value's component type of the multimap result- Parameters:
mapper- aFunctionthat maps entries of type(K, V)to entries of type(K2, V2)- Returns:
- a new
Multimap - Throws:
NullPointerException- ifmapperis null
-
map
Maps theMultimapentries to a sequence of values.Please use
map(BiFunction)if the result has to be of typeMultimap. -
mapTo
Description copied from interface:ValueMaps the underlying value to another fixed value. -
mapToVoid
-
mapValues
Maps the values of thisMultimapwhile preserving the corresponding keys.- Type Parameters:
V2- the new value type- Parameters:
valueMapper- aFunctionthat maps values of typeVto values of typeV2- Returns:
- a new
Multimap - Throws:
NullPointerException- ifvalueMapperis null
-
merge
Creates a new multimap which by merging the entries ofthismultimap andthatmultimap.If collisions occur, the value of
thismultimap is taken.- Parameters:
that- the other multimap- Returns:
- A merged multimap
- Throws:
NullPointerException- if that multimap is null
-
merge
<K2 extends K, V2 extends V> Multimap<K,V> merge(@NonNull Multimap<K2, V2> that, @NonNull BiFunction<Traversable<V>, Traversable<V2>, Traversable<V>> collisionResolution) Creates a new multimap which by merging the entries ofthismultimap andthatmultimap.Uses the specified collision resolution function if two keys are the same. The collision resolution function will always take the first argument from
thismultimap and the second fromthatmultimap.- Type Parameters:
K2- key type of that MultimapV2- value type of that Multimap- Parameters:
that- the other multimapcollisionResolution- the collision resolution function- Returns:
- A merged multimap
- Throws:
NullPointerException- if that multimap or the given collision resolution function is null
-
put
Associates the specified value with the specified key in this multimap. If the map previously contained a mapping for the key, the old value is replaced by the specified value.- Parameters:
key- key with which the specified value is to be associatedvalue- value to be associated with the specified key- Returns:
- A new Multimap containing these elements and that entry.
-
put
-
remove
-
remove
Removes the key-value pair from this multimap if it is present.- Parameters:
key- key whose mapping is to be removed from the multimapvalue- value whose mapping is to be removed from the multimap- Returns:
- A new Multimap containing these elements without the entry specified by that key and value.
-
removeAll
Deprecated.Please usereject(BiPredicate)Returns a new Multimap consisting of all elements which do not satisfy the given predicate.- Parameters:
predicate- the predicate used to test elements- Returns:
- a new Multimap
- Throws:
NullPointerException- ifpredicateis null
-
removeAll
-
removeKeys
Deprecated.Please userejectKeys(Predicate)Returns a new Multimap consisting of all elements with keys which do not satisfy the given predicate.- Parameters:
predicate- the predicate used to test keys of elements- Returns:
- a new Multimap
- Throws:
NullPointerException- ifpredicateis null
-
removeValues
Deprecated.Please userejectValues(Predicate)Returns a new Multimap consisting of all elements with values which do not satisfy the given predicate.- Parameters:
predicate- the predicate used to test values of elements- Returns:
- a new Multimap
- Throws:
NullPointerException- ifpredicateis null
-
scanLeft
default <U> Seq<U> scanLeft(U zero, @NonNull BiFunction<? super U, ? super Tuple2<K, V>, ? extends U> operation) Description copied from interface:TraversableProduces a collection containing cumulative results of applying the operator from left to right.Will not terminate for infinite collections. The results may vary across runs unless the collection is ordered.
- Specified by:
scanLeftin interfaceTraversable<K>- Type Parameters:
U- the type of the resulting elements- Parameters:
zero- the initial valueoperation- a binary operator applied to the intermediate result and each element- Returns:
- a new Traversable containing the cumulative results
-
scanRight
default <U> Seq<U> scanRight(U zero, @NonNull BiFunction<? super Tuple2<K, V>, ? super U, ? extends U> operation) Description copied from interface:TraversableProduces a collection containing cumulative results of applying the operator from right to left.The head of the resulting collection is the last cumulative result. Will not terminate for infinite collections. Results may vary across runs unless the collection is ordered.
- Specified by:
scanRightin interfaceTraversable<K>- Type Parameters:
U- the type of the resulting elements- Parameters:
zero- the initial valueoperation- a binary operator applied to each element and the intermediate result- Returns:
- a new Traversable containing the cumulative results
-
size
int size()Description copied from interface:TraversableReturns the number of elements in this Traversable.Alias for
Traversable.length().- Specified by:
sizein interfaceTraversable<K>- Returns:
- the number of elements
-
toJavaMap
Map<K, Collection<V>> toJavaMap()Converts this VavrMapto ajava.util.Mapwhile preserving characteristics like insertion order (LinkedHashMultimap) and sort order (SortedMultimap).- Returns:
- a new
java.util.Mapinstance
-
transform
Transforms thisMultimap.- Type Parameters:
U- Type of transformation result- Parameters:
f- A transformation- Returns:
- An instance of type
U - Throws:
NullPointerException- iffis null
-
unzip
default <T1,T2> Tuple2<Seq<T1>,Seq<T2>> unzip(@NonNull BiFunction<? super K, ? super V, Tuple2<? extends T1, ? extends T2>> unzipper) Unzips the entries of thisMultimapby mapping each key-value pair to a pair and splitting them into two separateSeqcollections.- Type Parameters:
T1- type of the first element in the resulting pairsT2- type of the second element in the resulting pairs- Parameters:
unzipper- a function that maps keys and values of thisMultimapto pairs- Returns:
- a
Tuple2containing twoSeqcollections with the split elements - Throws:
NullPointerException- ifunzipperis null
-
unzip
default <T1,T2> Tuple2<Seq<T1>,Seq<T2>> unzip(@NonNull Function<? super Tuple2<K, V>, Tuple2<? extends T1, ? extends T2>> unzipper) Description copied from interface:TraversableUnzips the elements of thisTraversableby mapping each element to a pair and splitting them into two separateTraversablecollections.- Specified by:
unzipin interfaceTraversable<K>- Type Parameters:
T1- type of the first element in the resulting pairsT2- type of the second element in the resulting pairs- Parameters:
unzipper- a function that maps elements of thisTraversableto pairs- Returns:
- a
Tuple2containing twoTraversablecollections with the split elements
-
unzip3
default <T1,T2, Tuple3<Seq<T1>,T3> Seq<T2>, unzip3Seq<T3>> (@NonNull BiFunction<? super K, ? super V, Tuple3<? extends T1, ? extends T2, ? extends T3>> unzipper) Unzips the entries of thisMultimapby mapping each key-value pair to a triple and splitting them into three separateSeqcollections.- Type Parameters:
T1- type of the first element in the resulting triplesT2- type of the second element in the resulting triplesT3- type of the third element in the resulting triples- Parameters:
unzipper- a function that maps keys and values of thisMultimapto triples- Returns:
- a
Tuple3containing threeSeqcollections with the split elements - Throws:
NullPointerException- ifunzipperis null
-
unzip3
default <T1,T2, Tuple3<Seq<T1>,T3> Seq<T2>, unzip3Seq<T3>> (@NonNull Function<? super Tuple2<K, V>, Tuple3<? extends T1, ? extends T2, ? extends T3>> unzipper) Description copied from interface:TraversableUnzips the elements of thisTraversableby mapping each element to a triple and splitting them into three separateTraversablecollections.- Specified by:
unzip3in interfaceTraversable<K>- Type Parameters:
T1- type of the first element in the resulting triplesT2- type of the second element in the resulting triplesT3- type of the third element in the resulting triples- Parameters:
unzipper- a function that maps elements of thisTraversableto triples- Returns:
- a
Tuple3containing threeTraversablecollections with the split elements
-
values
Traversable<V> values()Returns aTraversablecontaining all the values of thisMultimap.- Returns:
- a new
Traversable
-
zip
Description copied from interface:TraversableReturns aTraversableformed by pairing elements of thisTraversablewith elements of anotherIterable. Pairing stops when either collection runs out of elements; any remaining elements in the longer collection are ignored.The length of the resulting
Traversableis the minimum of the lengths of thisTraversableandthat.- Specified by:
zipin interfaceTraversable<K>- Type Parameters:
U- the type of elements in the second half of each pair- Parameters:
that- anIterableproviding the second element of each pair- Returns:
- a new
Traversablecontaining pairs of corresponding elements
-
zipAll
default <U> Seq<Tuple2<Tuple2<K,V>, U>> zipAll(@NonNull Iterable<? extends U> that, Tuple2<K, V> thisElem, U thatElem) Description copied from interface:TraversableReturns aTraversableformed by pairing elements of thisTraversablewith elements of anotherIterable, filling in placeholder elements when one collection is shorter than the other.The length of the resulting
Traversableis the maximum of the lengths of thisTraversableandthat.If this
Traversableis shorter thanthat,thisElemis used as a filler. Conversely, ifthatis shorter,thatElemis used.- Specified by:
zipAllin interfaceTraversable<K>- Type Parameters:
U- the type of elements in the second half of each pair- Parameters:
that- anIterableproviding the second element of each pairthisElem- the element used to fill missing values if thisTraversableis shorter thanthatthatElem- the element used to fill missing values ifthatis shorter than thisTraversable- Returns:
- a new
Traversablecontaining pairs of elements, including fillers as needed
-
zipWith
default <U,R> Seq<R> zipWith(@NonNull Iterable<? extends U> that, BiFunction<? super Tuple2<K, V>, ? super U, ? extends R> mapper) Description copied from interface:TraversableReturns aTraversableby combining elements of thisTraversablewith elements of anotherIterableusing a mapping function. Pairing stops when either collection runs out of elements.The length of the resulting
Traversableis the minimum of the lengths of thisTraversableandthat.- Specified by:
zipWithin interfaceTraversable<K>- Type Parameters:
U- the type of elements in the second parameter of the mapperR- the type of elements in the resultingTraversable- Parameters:
that- anIterableproviding the second parameter of the mappermapper- a function that combines elements from this andthatinto a new element- Returns:
- a new
Traversablecontaining mapped elements
-
zipWithIndex
Description copied from interface:TraversableZips thisTraversablewith its indices, starting at 0.- Specified by:
zipWithIndexin interfaceTraversable<K>- Returns:
- a new
Traversablecontaining each element paired with its index
-
zipWithIndex
default <U> Seq<U> zipWithIndex(@NonNull BiFunction<? super Tuple2<K, V>, ? super Integer, ? extends U> mapper) Description copied from interface:TraversableZips thisTraversablewith its indices and maps the resulting pairs using the provided mapper.- Specified by:
zipWithIndexin interfaceTraversable<K>- Type Parameters:
U- the type of elements in the resultingTraversable- Parameters:
mapper- a function mapping an element and its index to a new element- Returns:
- a new
Traversablecontaining the mapped elements
-
distinct
Description copied from interface:TraversableReturns a newTraversablecontaining the elements of this instance with all duplicates removed. Element equality is determined usingequals.- Specified by:
distinctin interfaceTraversable<K>- Returns:
- a new
Traversablewithout duplicate elements
-
distinctBy
Description copied from interface:TraversableReturns a newTraversablecontaining the elements of this instance without duplicates, as determined by the givencomparator.- Specified by:
distinctByin interfaceTraversable<K>- Parameters:
comparator- a comparator used to determine equality of elements- Returns:
- a new
Traversablewith duplicates removed
-
distinctBy
Description copied from interface:TraversableReturns a newTraversablecontaining the elements of this instance without duplicates, based on keys extracted from elements usingkeyExtractor.The first occurrence of each key is retained in the resulting sequence.
- Specified by:
distinctByin interfaceTraversable<K>- Type Parameters:
U- the type of key- Parameters:
keyExtractor- a function to extract keys for determining uniqueness- Returns:
- a new
Traversablewith duplicates removed based on keys
-
drop
Description copied from interface:TraversableReturns a newTraversablewithout the firstnelements, or an empty instance if this contains fewer thannelements.- Specified by:
dropin interfaceTraversable<K>- Parameters:
n- the number of elements to drop- Returns:
- a new instance excluding the first
nelements
-
dropRight
Description copied from interface:TraversableReturns a newTraversablewithout the lastnelements, or an empty instance if this contains fewer thannelements.- Specified by:
dropRightin interfaceTraversable<K>- Parameters:
n- the number of elements to drop from the end- Returns:
- a new instance excluding the last
nelements
-
dropUntil
Description copied from interface:TraversableReturns a newTraversablestarting from the first element that satisfies the givenpredicate, dropping all preceding elements.- Specified by:
dropUntilin interfaceTraversable<K>- Parameters:
predicate- a condition tested on each element- Returns:
- a new instance starting from the first element matching the predicate
-
dropWhile
Description copied from interface:TraversableReturns a newTraversablestarting from the first element that does not satisfy the givenpredicate, dropping all preceding elements.This is equivalent to
dropUntil(predicate.negate()), which is useful for method references that cannot be negated directly.- Specified by:
dropWhilein interfaceTraversable<K>- Parameters:
predicate- a condition tested on each element- Returns:
- a new instance starting from the first element not matching the predicate
-
filter
Description copied from interface:TraversableReturns a new traversable containing only the elements that satisfy the given predicate.- Specified by:
filterin interfaceTraversable<K>- Parameters:
predicate- the condition to test elements- Returns:
- a traversable with elements matching the predicate
-
reject
Description copied from interface:TraversableReturns a new traversable containing only the elements that do not satisfy the given predicate.This is equivalent to
filter(predicate.negate()).- Specified by:
rejectin interfaceTraversable<K>- Parameters:
predicate- the condition to test elements- Returns:
- a traversable with elements not matching the predicate
-
flatMap
default <U> Seq<U> flatMap(@NonNull Function<? super Tuple2<K, V>, ? extends Iterable<? extends U>> mapper) Flat-maps this entries to a sequence of values.Please use
flatMap(BiFunction)if the result should be aMultimap- Specified by:
flatMapin interfaceTraversable<K>- Type Parameters:
U- Component type- Parameters:
mapper- A mapper- Returns:
- A sequence of flat-mapped values.
-
foldRight
Description copied from interface:FoldableFolds the elements of this structure from the right, starting with the givenzerovalue and successively applying thecombinefunction to each element.Folding from the right means that elements are combined starting from the last element and associating each step with the accumulated result so far.
Example:
// Result: "!cba" List.of("a", "b", "c").foldRight("!", (x, acc) -> acc + x);- Specified by:
foldRightin interfaceFoldable<K>- Specified by:
foldRightin interfaceTraversable<K>- Type Parameters:
U- the type of the accumulated result- Parameters:
zero- the initial value to start folding withf- a function that combines the next element and the accumulated value- Returns:
- the folded result
-
groupBy
<C> Map<C, ? extends Multimap<K,V>> groupBy(@NonNull Function<? super Tuple2<K, V>, ? extends C> classifier) Description copied from interface:TraversableGroups elements of thisTraversablebased on a classifier function.- Specified by:
groupByin interfaceTraversable<K>- Type Parameters:
C- The type of the group keys- Parameters:
classifier- A function that assigns each element to a group- Returns:
- A map where each key corresponds to a group of elements
- See Also:
-
grouped
Description copied from interface:TraversableSplits thisTraversableinto consecutive blocks of the given size.Let
lengthbe the number of elements in thisTraversable:- If empty, the resulting
Iteratoris empty. - If
size <= length, the resultingIteratorcontainslength / sizeblocks of sizesizeand possibly a final smaller block of sizelength % size. - If
size > length, the resultingIteratorcontains a single block of sizelength.
Examples:
[].grouped(1) = [] [].grouped(0) throws [].grouped(-1) throws [1,2,3,4].grouped(2) = [[1,2],[3,4]] [1,2,3,4,5].grouped(2) = [[1,2],[3,4],[5]] [1,2,3,4].grouped(5) = [[1,2,3,4]]Note:
grouped(size)is equivalent tosliding(size, size).- Specified by:
groupedin interfaceTraversable<K>- Parameters:
size- the block size; must be positive- Returns:
- an
Iteratorover blocks of elements
- If empty, the resulting
-
init
Description copied from interface:TraversableReturns all elements of this Traversable except the last one.This is the dual of
Traversable.tail().- Specified by:
initin interfaceTraversable<K>- Returns:
- a new instance containing all elements except the last
-
initOption
Description copied from interface:TraversableReturns all elements of this Traversable except the last one, wrapped in anOption.This is the dual of
Traversable.tailOption().- Specified by:
initOptionin interfaceTraversable<K>- Returns:
Some(traversable)if non-empty, orNoneif this Traversable is empty
-
orElse
Description copied from interface:TraversableReturns thisTraversableif it is non-empty; otherwise, returns the given alternative.- Specified by:
orElsein interfaceTraversable<K>- Parameters:
other- an alternativeTraversableto return if this is empty- Returns:
- this
Traversableif non-empty, otherwiseother
-
orElse
Description copied from interface:TraversableReturns thisTraversableif it is non-empty; otherwise, returns the result of evaluating the given supplier.- Specified by:
orElsein interfaceTraversable<K>- Parameters:
supplier- a supplier of an alternativeTraversableif this is empty- Returns:
- this
Traversableif non-empty, otherwise the result ofsupplier.get()
-
partition
Tuple2<? extends Multimap<K,V>, ? extends Multimap<K, partitionV>> (@NonNull Predicate<? super Tuple2<K, V>> predicate) Description copied from interface:TraversableSplits thisTraversableinto two partitions according to a predicate.The first partition contains all elements that satisfy the predicate, and the second contains all elements that do not. The original iteration order is preserved.
- Specified by:
partitionin interfaceTraversable<K>- Parameters:
predicate- a predicate used to classify elements- Returns:
- a
Tuple2containing the two resultingTraversableinstances
-
peek
Description copied from interface:ValuePerforms the givenactionon the first element if this is an eager implementation. Performs the givenactionon all elements (the first immediately, successive deferred), if this is a lazy implementation. -
replace
Description copied from interface:TraversableReplaces the first occurrence ofcurrentElementwithnewElement, if it exists.- Specified by:
replacein interfaceTraversable<K>- Parameters:
currentElement- the element to be replacednewElement- the replacement element- Returns:
- a new Traversable with the first occurrence of
currentElementreplaced bynewElement
-
replaceAll
Description copied from interface:TraversableReplaces all occurrences ofcurrentElementwithnewElement.- Specified by:
replaceAllin interfaceTraversable<K>- Parameters:
currentElement- the element to be replacednewElement- the replacement element- Returns:
- a new Traversable with all occurrences of
currentElementreplaced bynewElement
-
replaceValue
Replaces the entry for the specified key only if it is currently mapped to some value.- Parameters:
key- the key of the element to be substitutedvalue- the new value to be associated with the key- Returns:
- a new map containing key mapped to value if key was contained before. The old map otherwise
-
replace
Replaces the entry with the specified key and oldValue.- Parameters:
key- the key of the element to be substitutedoldValue- the expected current value associated with the keynewValue- the new value to be associated with the key- Returns:
- a new map containing key mapped to newValue if key was contained before and oldValue was associated with the key. The old map otherwise.
-
replaceAll
Replaces each entry's values with the result of invoking the given function on that each tuple until all entries have been processed or the function throws an exception.- Parameters:
function- function transforming key and current value to a new value- Returns:
- a new map with the same keySet but transformed values
-
retainAll
Description copied from interface:TraversableRetains only the elements from this Traversable that are contained in the givenelements.- Specified by:
retainAllin interfaceTraversable<K>- Parameters:
elements- the elements to keep- Returns:
- a new Traversable containing only the elements present in
elements, in their original order
-
scan
Multimap<K,V> scan(Tuple2<K, V> zero, @NonNull BiFunction<? super Tuple2<K, V>, ? super Tuple2<K, V>, ? extends Tuple2<K, V>> operation) Description copied from interface:TraversableComputes a prefix scan of the elements of this Traversable.The neutral element
zeromay be applied more than once.- Specified by:
scanin interfaceTraversable<K>- Parameters:
zero- the neutral element for the operatoroperation- an associative binary operator- Returns:
- a new Traversable containing the prefix scan of the elements
-
slideBy
Description copied from interface:TraversablePartitions thisTraversableinto consecutive non-overlapping windows according to a classification function.Each window contains elements with the same class, as determined by
classifier. Two consecutive elements belong to the same window only ifclassifierreturns equal values for both. Otherwise, the current window ends and a new window begins with the next element.Examples:
[].slideBy(Function.identity()) = [] [1,2,3,4,4,5].slideBy(Function.identity()) = [[1],[2],[3],[4,4],[5]] [1,2,3,10,12,5,7,20,29].slideBy(x -> x / 10) = [[1,2,3],[10,12],[5,7],[20,29]]- Specified by:
slideByin interfaceTraversable<K>- Parameters:
classifier- A function classifying elements into groups- Returns:
- An
Iteratorof windows (grouped elements)
-
sliding
Description copied from interface:TraversableSlides a window of a givensizeover thisTraversablewith a step size of 1.This is equivalent to calling
Traversable.sliding(int, int)with a step size of 1.- Specified by:
slidingin interfaceTraversable<K>- Parameters:
size- a positive window size- Returns:
- An
Iteratorof windows, each containing up tosizeelements
-
sliding
Description copied from interface:TraversableSlides a window of a specificsizewith a givenstepover thisTraversable.Examples:
[].sliding(1, 1) = [] [1,2,3,4,5].sliding(2, 3) = [[1,2],[4,5]] [1,2,3,4,5].sliding(2, 4) = [[1,2],[5]] [1,2,3,4,5].sliding(2, 5) = [[1,2]] [1,2,3,4].sliding(5, 3) = [[1,2,3,4],[4]]- Specified by:
slidingin interfaceTraversable<K>- Parameters:
size- a positive window sizestep- a positive step size- Returns:
- an
Iteratorof windows with the given size and step
-
span
Tuple2<? extends Multimap<K,V>, ? extends Multimap<K, spanV>> (@NonNull Predicate<? super Tuple2<K, V>> predicate) Description copied from interface:TraversableSplits thisTraversableinto a prefix and remainder according to the givenpredicate.The first element of the returned
Tupleis the longest prefix of elements satisfyingpredicate, and the second element is the remaining elements.- Specified by:
spanin interfaceTraversable<K>- Parameters:
predicate- a predicate used to determine the prefix- Returns:
- a
Tuplecontaining the prefix and remainder
-
tail
Description copied from interface:TraversableReturns a newTraversablewithout its first element.- Specified by:
tailin interfaceTraversable<K>- Returns:
- a new
Traversablecontaining all elements except the first
-
tailOption
Description copied from interface:TraversableReturns a newTraversablewithout its first element as anOption.- Specified by:
tailOptionin interfaceTraversable<K>- Returns:
Some(traversable)if non-empty, otherwiseNone
-
take
Description copied from interface:TraversableReturns the firstnelements of thisTraversable, or all elements ifnexceeds the length.Equivalent to
sublist(0, max(0, min(length(), n))), but safe forn < 0orn > length().If
n < 0, an empty instance is returned. Ifn > length(), the full instance is returned.- Specified by:
takein interfaceTraversable<K>- Parameters:
n- the number of elements to take- Returns:
- a new
Traversablecontaining the firstnelements
-
takeRight
Description copied from interface:TraversableReturns the lastnelements of thisTraversable, or all elements ifnexceeds the length.Equivalent to
sublist(max(0, length() - n), length()), but safe forn < 0orn > length().If
n < 0, an empty instance is returned. Ifn > length(), the full instance is returned.- Specified by:
takeRightin interfaceTraversable<K>- Parameters:
n- the number of elements to take from the end- Returns:
- a new
Traversablecontaining the lastnelements
-
takeUntil
Description copied from interface:TraversableTakes elements from thisTraversableuntil the given predicate holds for an element.Equivalent to
takeWhile(predicate.negate()), but useful when using method references that cannot be negated directly.- Specified by:
takeUntilin interfaceTraversable<K>- Parameters:
predicate- a condition tested sequentially on the elements- Returns:
- a new
Traversablecontaining all elements before the first one that satisfies the predicate
-
takeWhile
Description copied from interface:TraversableTakes elements from thisTraversablewhile the given predicate holds.- Specified by:
takeWhilein interfaceTraversable<K>- Parameters:
predicate- a condition tested sequentially on the elements- Returns:
- a new
Traversablecontaining all elements up to (but not including) the first one that does not satisfy the predicate
-
reject(BiPredicate)