StringMap allows mapping of String keys to arbitrary values.

See Map for documentation details.

See also:

Constructor

inlinenew()

Creates a new StringMap.

Methods

inlineclear():Void

inlinecopy():StringMap<T>

inlineget(key:String):Null<T>

inlineiterator():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.

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.

inlineset(key:String, value:T):Void