StringMap allows mapping of String keys to arbitrary values.
See Map for documentation details.
Map
See also:
https://haxe.org/manual/std-Map.html
new()
Creates a new StringMap.
@:has_untypedinlineget(key:String):Null<T>
See Map.get
Map.get
inlinekeys():Iterator<String>
See Map.keys
Map.keys
(cs, java) Implementation detail: Do not set() any new value while iterating, as it may cause a resize, which will break iteration.
set()
@:has_untypedremove(key:String):Bool
See Map.remove
Map.remove
@:has_untypedinlineset(key:String, value:T):Void
See Map.set
Map.set