Dictionary object that can accept any elemente as key. see also an [entry on Feb 13, 2008](http://furyu.tea-nifty.com
(pending) MIT-style license
(pending)
[nydd jslib](http://code.nydd.org/).
Everything is worthwhile / if the soul isn’t small.
| Dictionary | Dictionary object that can accept any elemente as key. |
| Functions | |
| constructor | Generates dictionary object. |
| set | Set a key-value pair to a dictionary instance |
| get | get a value associated by the given key ahead. |
| remove | destructive get(). |
| getKeys | return an array contains all keys inside this dictionary instance. |
| collect | return an array contains all values inside this dictionary instance associated with the given keys. |
Set a key-value pair to a dictionary instance
this.set = function ( key, value )
get a value associated by the given key ahead.
this.get = function ( key )
destructive get().
this.remove = function ( key )
return an array contains all keys inside this dictionary instance.
this.getKeys = function ( key )
return an array contains all values inside this dictionary instance associated with the given keys.
this.collect = function ( keyList )