public PersistentHashMap(IDictionary <TK, TV> dict) { _clojureMap = clojure.lang.PersistentHashMap.create(dict as IDictionary); }
private PersistentHashMap(clojure.lang.IPersistentMap clojureMap) { _clojureMap = clojureMap; }
public PersistentHashMap() { _clojureMap = clojure.lang.PersistentHashMap.create(new Dictionary <TK, TV>()); }