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(): Iterator
See 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(): Iterator
See 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(): KeyValueIterator
See Map.keyValueIterator
Returns |
---|
KeyValueIterator |
clear(): Void
See Map.clear
new(): Void
Creates a new StringMap.
Private Members
h: Dynamic