MCPcopy Index your code
hub / github.com/clojure/clojure / mapUniqueKeys

Method mapUniqueKeys

src/jvm/clojure/lang/RT.java:1616–1622  ·  view source on GitHub ↗
(Object... init)

Source from the content-addressed store, hash-verified

1614}
1615
1616static public IPersistentMap mapUniqueKeys(Object... init){
1617 if(init == null)
1618 return PersistentArrayMap.EMPTY;
1619 else if(init.length <= PersistentArrayMap.HASHTABLE_THRESHOLD)
1620 return new PersistentArrayMap(init);
1621 return PersistentHashMap.create(init);
1622}
1623
1624static public IPersistentSet set(Object... init){
1625 return PersistentHashSet.createWithCheck(init);

Callers 11

parseMethod · 0.95
parseMethod · 0.95
evalMethod · 0.95
CompilerClass · 0.95
loadMethod · 0.95
compileMethod · 0.95
buildMethod · 0.95
parseMethod · 0.95
loadMethod · 0.95
doInitMethod · 0.95

Calls 1

createMethod · 0.95

Tested by

no test coverage detected