Skip to content

Instantly share code, notes, and snippets.

@nadako
Last active January 2, 2016 22:29
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nadako/8370493 to your computer and use it in GitHub Desktop.
Save nadako/8370493 to your computer and use it in GitHub Desktop.
Abstract wrapper for Dynamic objects.
/**
* Simple wrapper for anonymous structures that are meant to be used as a
* keyed collection of objects of the same type (i.e. json object).
*
* Wraps Reflect calls with nice syntax and static typing without any
* runtime overhead.
*/
abstract DynamicMap<V>(Dynamic<V>) from Dynamic<V>
{
/**
* Get value by string key.
* Can only be used with m[key] syntax (because it's private).
*/
@:arrayAccess private inline function get(key:String):V
{
return #if js untyped this[key]; #else Reflect.field(this, key); #end
}
/**
* Set value by string key.
* Can only be used with m[key] = v syntax (because it's private).
*/
@:arrayAccess private inline function set(key:String, value:V):Void
{
Reflect.setField(this, key, value);
}
/**
* Return whether a map contains given key
*/
public inline function has(key:String):Bool
{
return Reflect.hasField(this, key);
}
/**
* Delete given key from a map.
* Returns whether the key was present before deletion.
*/
public inline function delete(key:String):Bool
{
return Reflect.deleteField(this, key);
}
/**
* Return an array of all keys in the map.
*/
public inline function keys():Array<String>
{
return Reflect.fields(this);
}
}
@nadako
Copy link
Author

nadako commented Jan 14, 2014

var a:DynamicMap<Int> = {a: 10, b: 15};
for (key in a.keys())
{
    var b = a[key]; // typed to Int
    a["lol"] = "not-int"; // compilation error
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment