Haxe API Documentation
Back | Index
interface IMap<K, V>
import Map
Available in flash8, neko, js, flash, php, cpp
function exists(k : K) : Bool
function get(k : K) : Null<V>
function iterator() : Iterator<V>
function keys() : Iterator<K>
function remove(k : K) : Bool
function set(k : K, v : V) : Void
function toString() : String
Back | Index