ds.ObjectMap

ObjectMap<K, V>

package haxe-ds

implements IMap<K, V>

Available on all platforms

ObjectMap allows mapping of object keys to arbitrary values.

On static targets, the keys are considered to be strong references. Refer to haxe.ds.WeakMap for a weak reference version.

See Map for documentation details.

See:

Constructor

new ()

Creates a new ObjectMap.

Methods

exists (key:K ):Bool

Available on cpp, cs, flash, hl, java, js, macro, neko, php, python

See Map.exists

exists (key:A ):Bool

Available on lua

See Map.exists

get (key:K ):Null<V>

Available on cpp, cs, flash, java, js, macro, neko, php, python

See Map.get

get (key:K ):Null<T>

Available on hl

See Map.get

get (key:A ):Null<B>

Available on lua

See Map.get

iterator ():Iterator<V>

Available on cpp, flash, js, macro, neko, php, python

See Map.iterator

iterator ():Iterator<V>

Available on cs, java

Returns an iterator of all values in the hashtable. Implementation detail: Do not set() any new value while iterating, as it may cause a resize, which will break iteration

iterator ():Iterator<T>

Available on hl

See Map.iterator

iterator ():Iterator<B>

Available on lua

See Map.iterator

keys ():Iterator<K>

Available on cpp, flash, hl, js, macro, neko, php, python

See Map.keys

keys ():Iterator<K>

Available on cs, java

Returns an iterator of all keys in the hashtable. Implementation detail: Do not set() any new value while iterating, as it may cause a resize, which will break iteration

keys ():Iterator<A>

Available on lua

See Map.keys

remove (key:K ):Bool

Available on cpp, cs, flash, hl, java, js, macro, neko, php, python

See Map.remove

remove (key:A ):Bool

Available on lua

See Map.remove

set (key:K, value:V ):Void

Available on cpp, cs, flash, java, js, macro, neko, php, python

See Map.set

set (key:K, value:T ):Void

Available on hl

See Map.set

set (key:A, value:B ):Void

Available on lua

See Map.set

toString ():String

Available on cpp, flash, hl, js, lua, macro, neko, php, python

See Map.toString

toString ():String

Available on cs, java

Returns an displayable representation of the hashtable content.

© 2005–2016 Haxe Foundation
Licensed under a MIT license.
http://api.haxe.org/haxe/ds/ObjectMap.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部