interface RMapBase.Builder<K,V,Tp>
undocumented
Implemented by: OrderedMapBase.Builder<K,V,Tp>
, HashMap.Builder<K,V>
, SortedMap.Builder<K,V>
, RMap.Builder<K,V>
, ProximityMap.Builder<K,V>
Type parameters
Name | Constraints | Default | Description |
---|---|---|---|
K | undocumented | ||
V | undocumented | ||
Tp | RMapBase.Types | RMapBase.Types | undocumented |
Properties
context
Returns the context
associated to this collection instance.
context
context
associated to this collection instance.Definition
readonly context:
WithKeyValue
<Tp, K, V>['context'];
isEmpty
Returns true if there are no entries in the builder.
isEmpty
Definition
readonly isEmpty: boolean;
HashMap.of([[1, 'a'], [2, 'b']]).toBuilder().isEmpty
// => false
size
Returns the amount of entries in the builder.
size
Methods
addEntries
Adds given entries
to the builder.
addEntries
entries
to the builder.Definition
addEntries(entries:
StreamSource
<readonly [K, V]>): boolean;
Parameters
Name | Type | Description |
---|---|---|
entries | StreamSource <readonly [K, V]> |
const m = HashMap.of([1, 'a'], [2, 'b']).toBuilder()
m.addEntries([1, 'a'], [3, 'c']]) // => true
m.addEntries([]) // => false
addEntry
Adds given entry
to the builder.
addEntry
entry
to the builder.build
Returns an immutable collection instance containing the entries in this builder.
build
Definition
build():
WithKeyValue
<Tp, K, V>['normal'];
const m = HashMap.of([1, 'a'], [2, 'b']).toBuilder()
const m2: HashMap<number, string> = m.build()
buildMapValues
Returns an immutable instance of the entries in this builder, with given mapValues
function applied to all the values in the entries.
buildMapValues
mapValues
function applied to all the values in the entries.Definition
buildMapValues<V2>(mapFun: (value: V, key: K) => V2): (Tp &
KeyValue
<K, V2>)['normal'];
Type parameters
Name | Description |
---|---|
V2 |
Parameters
Name | Type | Description |
---|---|---|
mapFun | (value: V, key: K) => V2 | a function that takes an entry value and its key, and returns a new value |
const m = HashMap.of([1, 'a'], [2, 'b']).toBuilder()
const m2: HashMap<number, number> = m.buildMapValues(value => value.length)
forEach
Performs given function f
for each entry of the builder.
forEach
f
for each entry of the builder.Definition
forEach(f: (entry: readonly [K, V], index: number, halt: () => void) => void, options?: {
state?:
TraverseState
;
}): void;
Parameters
Name | Type | Description |
---|---|---|
f | (entry: readonly [K, V], index: number, halt: () => void) => void | the function to perform for each element, receiving: - entry : the next key-value entry- index : the index of the element- halt : a function that, if called, ensures that no new elements are passed |
options | { state?: TraverseState ; } |
RibuError.ModifiedBuilderWhileLoopingOverItError if the builder is modified while looping over it
HashMap.of([1, 'a'], [2, 'b'], [3, 'c']).toBuilder().forEach((entry, i, halt) => {
console.log([entry[1], entry[0]]);
if (i >= 1) halt();
})
// => logs ['a', 1] ['b', 2]
O(N)
get
Returns the value associated with the given key
, or given otherwise
value if the key is not in the collection.
get
key
, or given otherwise
value if the key is not in the collection.Definitions
get<UK = K>(key:
RelatedTo
<K, UK>): V
|
undefined;
get<UK, O>(key:
RelatedTo
<K, UK>, otherwise:
OptLazy
<O>): V
|
O;
Type parameters
Name | Default | Description |
---|---|---|
UK | K |
Parameters
Name | Type | Description |
---|---|---|
key | RelatedTo <K, UK> | the key to look for |
const m = HashMap.of([1, 'a'], [2, 'b']).toBuilder()
m.get(2) // => 'b'
m.get(3) // => undefined
m.get(2, 'none') // => 'b'
m.get(3, 'none') // => 'none'
hasKey
Returns true if the given key
is present in the builder.
hasKey
key
is present in the builder.modifyAt
Modifies or creates the builder entry with given atKey
as its key according to given options
.
modifyAt
atKey
as its key according to given options
.Definition
modifyAt(key: K, options: {
ifNew?:
OptLazyOr
<V, Token>;
ifExists?: (<V2 extends V = V>(currentValue: V & V2, remove: Token) => V
|
Token)
|
V;
}): boolean;
Parameters
Name | Type | Description |
---|---|---|
key | K | |
options | { ifNew?: OptLazyOr <V, Token>; ifExists?: (<V2 extends V = V>(currentValue: V & V2, remove: Token) => V | Token) | V; } |
const m = HashMap.of([1, 'a'], [2, 'b']).toBuilder()
m.modifyAt(1, { ifNew: 'd' })
// => false
m.modifyAt(3, { ifNew: 'c' })
// => true
m.modifyAt(3, { ifNew: (none) => 1 < 2 ? none : 'c' })
// => false
m.modifyAt(2, { ifExists: () => 'c' })
// => true
m.modifyAt(1, { ifExists: (v) => v + 'z' })
// => true
m.modifyAt(2, { ifExists: (v, remove) => v === 'a' ? v : remove })
// => true
removeKey
Removes the entry with given key
from the builder.
removeKey
key
from the builder.Definitions
removeKey<UK = K>(key:
RelatedTo
<K, UK>): V
|
undefined;
removeKey<UK, O>(key:
RelatedTo
<K, UK>, otherwise:
OptLazy
<O>): V
|
O;
Type parameters
Name | Default | Description |
---|---|---|
UK | K |
Parameters
Name | Type | Description |
---|---|---|
key | RelatedTo <K, UK> | the key of the entry to remove |
const m = HashMap.of([1, 'a'], [2, 'b']).toBuilder()
m.removeKey(2) // => 'b'
m.removeKey(3) // => undefined
m.removeKey(3, 'c') // => 'c'
removeKeys
Removes the entries in the given keys
StreamSource
from the builder.
removeKeys
keys
StreamSource
from the builder.Definition
removeKeys<UK = K>(keys:
StreamSource
<
RelatedTo
<K, UK>>): boolean;
Type parameters
Name | Default | Description |
---|---|---|
UK | K |
Parameters
Name | Type | Description |
---|---|---|
keys | StreamSource < RelatedTo <K, UK>> |
const m = HashMap.of([1, 'a'], [2, 'b']).toBuilder()
m.removeKeys([3, 4, 5]) // => false
m.removeKeys([1, 10]) // => true
set
Associates given key
with given value
in the builder.
set
key
with given value
in the builder.updateAt
Updates the value in the builder associated with given key
according to given update
value or function.
updateAt
key
according to given update
value or function.Definitions
updateAt(key: K, update:
RMapBase.Update
<V>): V
|
undefined;
updateAt<O>(key: K, update:
RMapBase.Update
<V>, otherwise:
OptLazy
<O>): V
|
O;
Parameters
Name | Type | Description |
---|---|---|
key | K | the key of the entry to update |
update | RMapBase.Update <V> | a new value or function taking the previous value and returning a new value |
const m = HashMap.of([1, 'a'], [2, 'b']).toBuilder()
m.updateAt(1, 'a') // => 'a'
m.updateAt(1, 'b') // => 'b'
m.updateAt(2, v => v + 'z') // => 'b'