Haxe API Documentation
Back | Index
class haxe.ds.ObjectMap<K, V>
implements IMap<K, V>
Available in flash8, neko, js, flash, php, cpp
function new() : Void
function exists(key : K) : Bool
function get(key : K) : Null<V>
function iterator() : Iterator<V>
function keys() : Iterator<K>
function remove(key : K) : Bool
function set(key : K, value : V) : Void
function toString() : String
Back | Index