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.

Methods

inlinecopy():DynamicAccess<T>

Returns a shallow copy of the structure

inlineexists(key:String):Bool

Tells if the structure contains a specified key.

If key is null, the result is unspecified.

inlineget(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.

inlineiterator():DynamicAccessIterator<T>

Returns an Iterator over the values of this DynamicAccess.

The order of values is undefined.

inlinekeyValueIterator():DynamicAccessKeyValueIterator<T>

Returns an Iterator over the keys and values of this DynamicAccess.

The order of values is undefined.

inlinekeys():Array<String>

Returns an array of keys in a structure.

inlineremove(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.

inlineset(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–2020 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/haxe/DynamicAccess.html