UnsafeStringMap<T>

package haxe.ds

implements IMap<String, T>

Available on flash

This is similar to StringMap excepts that it does not sanitize the keys. As a result, it will be faster to access the map for reading, but it might fail with some reserved keys such as constructor or prototype.

Constructor

new()

Methods

inlineclear():Void

copy():UnsafeStringMap<T>

inlineexists(key:String):Bool

inlineget(key:String):Null<T>

inlineiterator():Iterator<T>

inlinekeyValueIterator():KeyValueIterator<String, T>

inlinekeys():Iterator<String>

remove(key:String):Bool

inlineset(key:String, value:T):Void

toString():String

© 2005–2020 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/haxe/ds/UnsafeStringMap.html