Package-level declarations
Functions
Applies the transformation to the value corresponding to the given key or null instead if it's not present.
Returns a map containing the elements from the given collection indexed by the key returned from keySelector function applied to each element.
Returns a map containing the values provided by valueTransform and indexed by keySelector functions applied to elements of the given collection.
Populates the destination map with key-value pairs, where key is provided by keySelector function applied to each element of the given collection and value is the element itself, resolving conflicts with resolve function and returns the destination.
Populates the destination map with key-value pairs, where key is provided by keySelector function and value is provided by valueTransform applied to each element of the given collection, resolving conflicts with resolve function and returns the destination.
Populates the destination map with key-value pairs provided by transform function applied to each element of the given collection resolving conflicts with resolve function and returns the destination.
Computes the given lambda compute on value corresponding to the provided key or computes the given lambda defaultResult if the key is not present.
Transforms values of entries of this map with the given transformation and copies resulting entries to the destination map merging present entries with new ones using resolve lambda. Is equivalent to
Populates the given destination map with entries having the keys obtained by applying the transform function to each entry in this map and the values of this map, resolving conflicts with resolve function and returns the destination.
Populates the given destination map with entries having the keys of this map and the values obtained by applying the transform function to each entry in this map resolving conflicts with resolve function and returns the destination.
Merges the first map and the second map prioritising the second one, puts result to the destination and returns the destination.
Merges the first map and the second map resolving conflicts with resolve lambda, puts result to the destination and returns the destination.
Accumulates value starting with initial value and applying operation1 to current accumulator value and each entry of map1 which key does not appear in map2, operation2 to current accumulator value and each entry of map2 which key does not appear in map2, and operationMerge to current accumulator value and triple of a common key of the maps and both its corresponding values in map1 and map2.
Depending on presence of value corresponding to the given key either puts new value valueOnPut or changes the present value with transformOnChange.
Depending on presence of value corresponding to the given key either puts new value calculated by valueOnPut or changes the present value with transformOnChange.
Creates copy of the map and depending on presence of value corresponding to the given key either puts new value valueOnPut or changes the present value with transformOnChange.
Creates copy of the map and depending on presence of value corresponding to the given key either puts new value calculated by valueOnPut or changes the present value with transformOnChange.