Map
Edit on GitHubA Map holds key-value pairs. Any value may be used as a key or value. Operations on a Map mutate the internal state, so it never needs to be re-assigned.
An immutable map implementation is available in the Immutable
submodule.
Added in 0.2.0
No other changes yet.
Types
Type declarations included in the Map module.
Map.Map
Map.InternalMapStats
Represents the internal state of a map.
Values
Functions and constants included in the Map module.
Map.make
Added in 0.2.0
version | changes |
---|---|
0.6.0 | Merged with `makeSized`; modified signature to accept size |
Creates a new empty map with an initial storage of the given size. As values are added or removed, the internal storage may grow or shrink. Generally, you won’t need to care about the storage size of your map and can use the default size.
Parameters:
param | type | description |
---|---|---|
?size |
Number |
The initial storage size of the map |
Returns:
type | description |
---|---|
Map<a, b> |
An empty map with the given initial storage size |
Map.set
Added in 0.2.0
No other changes yet.
Adds a new key-value pair to the map. If the key already exists in the map, the value is replaced.
Parameters:
param | type | description |
---|---|---|
key |
a |
The unique key in the map |
value |
b |
The value to store |
map |
Map<a, b> |
The map to modify |
Map.get
Added in 0.2.0
No other changes yet.
Retrieves the value for the given key.
Parameters:
param | type | description |
---|---|---|
key |
a |
The key to access |
map |
Map<a, b> |
The map to access |
Returns:
type | description |
---|---|
Option<b> |
Some(value) if the key exists in the map or None otherwise |
Map.contains
Added in 0.2.0
No other changes yet.
Determines if the map contains the given key. In such a case, it will always contain a value for the given key.
Parameters:
param | type | description |
---|---|---|
key |
a |
The key to search for |
map |
Map<a, b> |
The map to search |
Returns:
type | description |
---|---|
Bool |
true if the map contains the given key or false otherwise |
Map.remove
Added in 0.2.0
No other changes yet.
Removes the given key from the map, which also removes the value. If the key pair doesn’t exist, nothing happens.
Parameters:
param | type | description |
---|---|---|
key |
a |
The key to remove |
map |
Map<a, b> |
The map to update |
Map.update
Added in 0.3.0
No other changes yet.
Updates a value in the map by calling an updater function that receives the previously stored value as an Option
and returns the new value to be stored as an Option
. If the key didn’t exist previously, the value will be None
. If None
is returned from the updater function, the key-value pair is removed.
Parameters:
param | type | description |
---|---|---|
key |
a |
The unique key in the map |
fn |
Option<b> => Option<b> |
The updater function |
map |
Map<a, b> |
The map to modify |
Map.size
Added in 0.2.0
No other changes yet.
Provides the count of key-value pairs stored within the map.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to inspect |
Returns:
type | description |
---|---|
Number |
The count of key-value pairs in the map |
Map.isEmpty
Added in 0.2.0
No other changes yet.
Determines if the map contains no key-value pairs.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to inspect |
Returns:
type | description |
---|---|
Bool |
true if the given map is empty or false otherwise |
Map.clear
Added in 0.2.0
No other changes yet.
Resets the map by removing all key-value pairs.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to reset |
Map.forEach
Added in 0.2.0
version | changes |
---|---|
0.5.0 | Ensured the iterator function return type is always `Void` |
Iterates the map, calling an iterator function with each key and value.
Parameters:
param | type | description |
---|---|---|
fn |
(a, b) => Void |
The iterator function to call with each key and value |
map |
Map<a, b> |
The map to iterate |
Map.reduce
Added in 0.2.0
No other changes yet.
Combines all key-value pairs of a map using a reducer function.
Parameters:
param | type | description |
---|---|---|
fn |
(a, b, c) => a |
The reducer function to call on each key and value, where the value returned will be the next accumulator value |
init |
a |
The initial value to use for the accumulator on the first iteration |
map |
Map<b, c> |
The map to iterate |
Returns:
type | description |
---|---|
a |
The final accumulator returned from fn |
Map.keys
Added in 0.2.0
No other changes yet.
Enumerates all keys in the given map.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to enumerate |
Returns:
type | description |
---|---|
List<a> |
A list containing all keys from the given map |
Map.values
Added in 0.2.0
No other changes yet.
Enumerates all values in the given map.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to enumerate |
Returns:
type | description |
---|---|
List<b> |
A list containing all values from the given map |
Map.toList
Added in 0.2.0
No other changes yet.
Enumerates all key-value pairs in the given map.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to enumerate |
Returns:
type | description |
---|---|
List<(a, b)> |
A list containing all key-value pairs from the given map |
Map.fromList
Added in 0.2.0
No other changes yet.
Creates a map from a list.
Parameters:
param | type | description |
---|---|---|
list |
List<(a, b)> |
The list to convert |
Returns:
type | description |
---|---|
Map<a, b> |
A map containing all key-value pairs from the list |
Map.toArray
Added in 0.2.0
No other changes yet.
Converts a map into an array of its key-value pairs.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to convert |
Returns:
type | description |
---|---|
Array<(a, b)> |
An array containing all key-value pairs from the given map |
Map.fromArray
Added in 0.2.0
No other changes yet.
Creates a map from an array.
Parameters:
param | type | description |
---|---|---|
array |
Array<(a, b)> |
The array to convert |
Returns:
type | description |
---|---|
Map<a, b> |
A map containing all key-value pairs from the array |
Map.filter
Added in 0.2.0
No other changes yet.
Removes key-value pairs from a map where a predicate function returns false
.
Parameters:
param | type | description |
---|---|---|
fn |
(a, b) => Bool |
The predicate function to indicate which key-value pairs to remove from the map, where returning false indicates the key-value pair should be removed |
map |
Map<a, b> |
The map to iterate |
Map.reject
Added in 0.2.0
No other changes yet.
Removes key-value pairs from a map where a predicate function returns true
.
Parameters:
param | type | description |
---|---|---|
fn |
(a, b) => Bool |
The predicate function to indicate which key-value pairs to remove from the map, where returning true indicates the key-value pair should be removed |
map |
Map<a, b> |
The map to iterate |
Map.getInternalStats
Added in 0.2.0
version | changes |
---|---|
0.6.0 | Return `InternalMapStats` record instead of a tuple |
Provides data representing the internal state state of the map.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to inspect |
Returns:
type | description |
---|---|
InternalMapStats |
The internal state of the map |
Map.Immutable
An immutable map implementation.
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Types
Type declarations included in the Map.Immutable module.
Map.Immutable.Map
Values
Functions and constants included in the Map.Immutable module.
Map.Immutable.empty
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
An empty map
Map.Immutable.size
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Provides the count of key-value pairs stored within the map.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to inspect |
Returns:
type | description |
---|---|
Number |
The count of key-value pairs in the map |
Map.Immutable.isEmpty
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Determines if the map contains no key-value pairs.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to inspect |
Returns:
type | description |
---|---|
Bool |
true if the given map is empty or false otherwise |
Map.Immutable.set
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Produces a new map containing a new key-value pair. If the key already exists in the map, the value is replaced.
Parameters:
param | type | description |
---|---|---|
key |
a |
The unique key in the map |
value |
b |
The value to store |
map |
Map<a, b> |
The base map |
Returns:
type | description |
---|---|
Map<a, b> |
A new map containing the new key-value pair |
Map.Immutable.get
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Retrieves the value for the given key.
Parameters:
param | type | description |
---|---|---|
key |
a |
The key to access |
map |
Map<a, b> |
The map to access |
Returns:
type | description |
---|---|
Option<b> |
Some(value) if the key exists in the map or None otherwise |
Map.Immutable.contains
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Determines if the map contains the given key. In such a case, it will always contain a value for the given key.
Parameters:
param | type | description |
---|---|---|
key |
a |
The key to search for |
map |
Map<a, b> |
The map to search |
Returns:
type | description |
---|---|
Bool |
true if the map contains the given key or false otherwise |
Map.Immutable.remove
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Produces a new map without the key-value pair corresponding to the given key. If the key doesn’t exist in the map, the map will be returned unmodified.
Parameters:
param | type | description |
---|---|---|
key |
a |
The key to exclude |
map |
Map<a, b> |
The map to exclude from |
Returns:
type | description |
---|---|
Map<a, b> |
A new map without the given key |
Map.Immutable.update
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Produces a new map by calling an updater function that receives the
previously stored value as an Option
and returns the new value to be
stored as an Option
. If the key didn’t exist previously, the value
will be None
. If None
is returned from the updater function, the
key-value pair is excluded.
Parameters:
param | type | description |
---|---|---|
key |
a |
The unique key in the map |
fn |
Option<b> => Option<b> |
The updater function |
map |
Map<a, b> |
The base map |
Returns:
type | description |
---|---|
Map<a, b> |
A new map with the value at the given key modified according to the function’s output |
Map.Immutable.forEach
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Iterates the map, calling an iterator function with each key and value.
Parameters:
param | type | description |
---|---|---|
fn |
(a, b) => Void |
The iterator function to call with each key and value |
map |
Map<a, b> |
The map to iterate |
Map.Immutable.reduce
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Combines all key-value pairs of a map using a reducer function.
Parameters:
param | type | description |
---|---|---|
fn |
(a, b, c) => a |
The reducer function to call on each key and value, where the value returned will be the next accumulator value |
init |
a |
The initial value to use for the accumulator on the first iteration |
map |
Map<b, c> |
The map to iterate |
Returns:
type | description |
---|---|
a |
The final accumulator returned from fn |
Map.Immutable.keys
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Enumerates all keys in the given map.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to enumerate |
Returns:
type | description |
---|---|
List<a> |
A list containing all keys from the given map |
Map.Immutable.values
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Enumerates all values in the given map.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to enumerate |
Returns:
type | description |
---|---|
List<b> |
A list containing all values from the given map |
Map.Immutable.filter
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Produces a new map excluding the key-value pairs where a predicate function returns false
.
Parameters:
param | type | description |
---|---|---|
fn |
(a, b) => Bool |
The predicate function to indicate which key-value pairs to exclude from the map, where returning false indicates the key-value pair should be excluded |
map |
Map<a, b> |
The map to iterate |
Returns:
type | description |
---|---|
Map<a, b> |
A new map excluding the key-value pairs not fulfilling the predicate |
Map.Immutable.reject
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Produces a new map excluding the key-value pairs where a predicate function returns true
.
Parameters:
param | type | description |
---|---|---|
fn |
(a, b) => Bool |
The predicate function to indicate which key-value pairs to exclude from the map, where returning true indicates the key-value pair should be excluded |
map |
Map<a, b> |
The map to iterate |
Returns:
type | description |
---|---|
Map<a, b> |
A new map excluding the key-value pairs fulfilling the predicate |
Map.Immutable.fromList
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Creates a map from a list.
Parameters:
param | type | description |
---|---|---|
list |
List<(a, b)> |
The list to convert |
Returns:
type | description |
---|---|
Map<a, b> |
A map containing all key-value pairs from the list |
Map.Immutable.toList
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Enumerates all key-value pairs in the given map.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to enumerate |
Returns:
type | description |
---|---|
List<(a, b)> |
A list containing all key-value pairs from the given map |
Map.Immutable.fromArray
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Creates a map from an array.
Parameters:
param | type | description |
---|---|---|
array |
Array<(a, b)> |
The array to convert |
Returns:
type | description |
---|---|
Map<a, b> |
A map containing all key-value pairs from the array |
Map.Immutable.toArray
Added in 0.6.0
version | changes |
---|---|
0.5.4 | Originally in `"immutablemap"` module |
Converts a map into an array of its key-value pairs.
Parameters:
param | type | description |
---|---|---|
map |
Map<a, b> |
The map to convert |
Returns:
type | description |
---|---|
Array<(a, b)> |
An array containing all key-value pairs from the given map |