StringMap
haxe.ds.StringMap (Class)
Implements: haxe.IMap
StringMap allows mapping of String keys to arbitrary values.
See Map for documentation details.
See: https://haxe.org/manual/std-Map.html
Instance Members
See Map.exists
| Name | Type |
|---|---|
key |
String |
| Returns |
|---|
| Bool |
See Map.get
| Name | Type |
|---|---|
key |
String |
| Returns |
|---|
| Null<haxe.ds.StringMap.T> |
See Map.set
| Name | Type |
|---|---|
key |
String |
value |
haxe.ds.StringMap.T |
See Map.remove
| Name | Type |
|---|---|
key |
String |
| Returns |
|---|
| Bool |
keys(): IteratorSee Map.keys
(cs, java) Implementation detail: Do not set() any new value while
iterating, as it may cause a resize, which will break iteration.
| Returns |
|---|
| Iterator |
iterator(): IteratorSee Map.iterator
(cs, java) Implementation detail: Do not set() any new value while
iterating, as it may cause a resize, which will break iteration.
| Returns |
|---|
| Iterator |
keyValueIterator(): KeyValueIteratorSee Map.keyValueIterator
| Returns |
|---|
| KeyValueIterator |
clear(): VoidSee Map.clear
new(): VoidCreates a new StringMap.
Private Members
h: Dynamic