haXe API Documentation
Back | Index
class flash.utils.TypedDictionary<K, T>
extends Dictionary
Available in flash9
This is a typed version of the Flash9 Dictionary class.
function new(?weakKeys : Bool) : Void
function delete(k : K) : Void
function exists(k : K) : Bool
function get(k : K) : Null<T>
function iterator() : Iterator<K>
function set(k : K, v : T) : Void
Back | Index