interface HashMultiSet.NonEmpty<T>
A type-invariant immutable MultiSet of value type T. In the MultiSet, each value can occur multiple times. See the MultiSet documentation and the HashMultiSet API documentation
Extends: Streamable.NonEmpty<T>
, HashMultiSet<T>
, MultiSetBase.NonEmpty<T,Tp>
Type parameters
Name | Description |
---|---|
T | the value type |
- The
HashMultiSet
uses the contexts'HashMap
mapContext
to hash the values.
const m1 = HashMultiSet.empty<string>()
const m2 = HashMultiSet.of('a', 'b', 'a', 'c')
Properties
context
Returns the context
associated to this collection instance.
context
context
associated to this collection instance.countMap
Returns the Map representation of this collection.
countMap
isEmpty
Returns false since this collection is known to be non-empty
isEmpty
size
Returns the number of values in the collection.
size
sizeDistinct
Returns the number of distinct values in the collection.
sizeDistinct
Methods
[Symbol.iterator]
Returns a FastIterator
instance used to iterate over the values of this Iterable
.
[Symbol.iterator]
FastIterator
instance used to iterate over the values of this Iterable
.add
Returns the collection with the given value
added amount
times.
add
value
added amount
times.addAll
Returns the collection with the values in values
added.
addAll
values
added.addEntries
Returns the collection where for every entry in entries
consisting of a tuple of a value and an amount, that value is added amount
times.
addEntries
entries
consisting of a tuple of a value and an amount, that value is added amount
times.asNormal
Returns this collection typed as a 'possibly empty' collection.
asNormal
assumeNonEmpty
Returns the collection as a .NonEmpty type
assumeNonEmpty
count
Returns the amount of occurrances of the given value
in the collection.
count
value
in the collection.filterEntries
Returns the collection containing only those values for which the given pred
function returns true.
filterEntries
pred
function returns true.forEach
Performs given function f
for each value of the collection, using given state
as initial traversal state.
forEach
f
for each value of the collection, using given state
as initial traversal state.has
Returns true if the given value
exists in the collection.
has
value
exists in the collection.modifyCount
Returns the collection where the count of the given value
is modified according to the given update
function.
modifyCount
value
is modified according to the given update
function.nonEmpty
Returns true since this collection is known to be non-empty
nonEmpty
remove
Returns the collection where the given amount
(default: 'ALL') of the given value
are removed.
remove
amount
(default: 'ALL') of the given value
are removed.removeAllEvery
Returns the collection where for every value from given values
StreamSource
, all values in the collection are removed.
removeAllEvery
values
StreamSource
, all values in the collection are removed.removeAllSingle
Returns the collection where every single value from given values
StreamSource
is removed.
removeAllSingle
values
StreamSource
is removed.setCount
Returns the collection where the amount of values of value
if set to amount
.
setCount
value
if set to amount
.stream
undocumented
stream
streamDistinct
Returns a non-empty Stream containing all distinct values of this collection.
streamDistinct
toArray
Returns a non-empty array containing all values in this collection.
toArray
toBuilder
Returns a builder object containing the entries of this collection.
toBuilder
toJSON
Returns a JSON representation of this collection.
toJSON
toString
Returns a string representation of this collection.
toString