Haxe API Documentation
Back | Index
class haxe.ds.BalancedTree<K, V>
Available in flash8, neko, js, flash, php, cpp
function new() : Void
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