예제 #1
0
 public PersistentHashMap(IDictionary <TK, TV> dict)
 {
     _clojureMap = clojure.lang.PersistentHashMap.create(dict as IDictionary);
 }
예제 #2
0
 private PersistentHashMap(clojure.lang.IPersistentMap clojureMap)
 {
     _clojureMap = clojureMap;
 }
예제 #3
0
 public PersistentHashMap()
 {
     _clojureMap = clojure.lang.PersistentHashMap.create(new Dictionary <TK, TV>());
 }