StringMap allows mapping of String keys to arbitrary values.

See Map for documentation details.

See also:

Constructor

new()

Creates a new StringMap.

Methods

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

inlinekeys():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_untypedinlineset(key:String, value:T):Void