Uses of Interface
jfun.util.dict.Dict

Packages that use Dict
jfun.util.dict Provides classes and interfaces for functional associative array. 
 

Uses of Dict in jfun.util.dict
 

Methods in jfun.util.dict that return Dict
static Dict DictFactory.instance()
          returns an empty instance of unsafe immutable dictionary.
static Dict DictFactory.safeInstance()
          same as instance() except this is a thread-safe version
static Dict DictFactory.merge(Dict d1, Dict d2)
          Add the contents in the second Dict object into the first.
static Dict DictFactory.subtract(Dict d1, Dict d2)
          Remove the elements contained in the second Dict object from the first.
 Dict Dict.copy()
          Create a copy of the Dict object.
 Dict Dict.put(java.lang.Object key, java.lang.Object val)
          Functional update.
 Dict Dict.remove(java.lang.Object key)
          Functional update.
 Dict Dict.puts(java.lang.Object[] keys, java.lang.Object[] vals)
          Functional update.
 Dict Dict.removes(java.lang.Object[] keys)
          Functional update.
 

Methods in jfun.util.dict with parameters of type Dict
static Dict DictFactory.merge(Dict d1, Dict d2)
          Add the contents in the second Dict object into the first.
static Dict DictFactory.subtract(Dict d1, Dict d2)
          Remove the elements contained in the second Dict object from the first.