StringMap allows mapping of String keys to arbitrary values.

See Map for documentation details.

See also:

Constructor

@:has_untypednew()

Creates a new StringMap.

Methods

@:has_untypedclear():Void

@:has_untypedexists(key:String):Bool

@:has_untypedget(key:String):Null<T>

@:has_untypediterator():Iterator<T>

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.

@:has_untypedkeys():Iterator<String>

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.

@:has_untypedremove(key:String):Bool

@:has_untypedset(key:String, value:T):Void