module arch.system.state.resource_machine.primitive_interfaces.map;
Map¶
Map is a structure that contains pairs (key: value), where key is of type K and value is of type V.
Interface¶
- new() -> Map
- add(Map, K, V) -> Map
- size(Map) -> Nat
- get(Map, K) -> V
- keys(Map) -> List K