class haxe.ds.StringMap<T>

StringMap allows mapping of String keys to arbitrary values.

See Map for documentation details.

Instance Fields

function new(): Void

Creates a new StringMap.

function get(key:String): Null<T>

function iterator(): Iterator<T>

function keys(): Iterator<String>

function remove(key:String): Bool

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