DynamicAccess

DynamicAccess<T>(Dynamic<T>)

package haxe

from Dynamic<T> to Dynamic<T>

Available on all platforms

DynamicAccess is an abstract type for working with anonymous structures that are intended to hold collections of objects by the string key.

For example, these types of structures are often created from JSON.

Basically, it wraps Reflect calls in a Map-like interface.

Constructor

inline new ()

Creates a new structure.

Methods

inline exists (key:String):Bool

Tells if the structure contains a specified key.

If key is null, the result is unspecified.

inline get (key:String):Null<T>

Returns a value by specified key.

If the structure does not contain the given key, null is returned.

If key is null, the result is unspecified.

inline keys ():Array<String>

Returns an array of keys in a structure.

inline remove (key:String):Bool

Removes a specified key from the structure.

Returns true, if key was present in structure, or false otherwise.

If key is null, the result is unspecified.

inline set (key:String, value:T ):T

Sets a value for a specified key.

If the structure contains the given key, its value will be overwritten.

Returns the given value.

If key is null, the result is unspecified.

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

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部