StringMap allows mapping of String keys to arbitrary values.

See Map for documentation details.

See also:

Constructor

new()

Creates a new StringMap.

Methods

get(key:String):Null<T>

iterator():Iterator<T>

Available on python, php, flash, lua, hl, neko, js, cpp, macro

iterator():Iterator<T>

Available on cs, java

Returns an iterator of all values in the hashtable. Implementation detail: Do not set() any new value while iterating, as it may cause a resize, which will break iteration

keys():Iterator<String>

Available on python, php, flash, lua, hl, neko, js, cpp, macro

keys():Iterator<String>

Available on cs, java

Returns an iterator of all keys in the hashtable. Implementation detail: Do not set() any new value while iterating, as it may cause a resize, which will break iteration

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

toString():String

Available on python, php, flash, lua, hl, neko, js, cpp, macro

toString():String

Available on cs, java

Returns an displayable representation of the hashtable content.