Data / Map
6 nodes in this category.
Create Map
data/map_create
Creates a new empty Map (key-value store).
Out: map
Map Set
data/map_set
Inserts or updates a key-value pair in a Map.
In: map, key, value
Out: map
Map Get
data/map_get
Retrieves a value from a Map by key.
In: map, key
Out: value, found
Map Remove
data/map_remove
Removes a key-value pair from a Map.
In: map, key
Out: map, removed
Map Contains
data/map_contains
Checks whether a Map contains a given key.
In: map, key
Out: found, size
Map Keys & Values
data/map_keys
Extracts all keys, all values, and the size of a Map.
In: map
Out: keys, values, size