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

Method map

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

Source from the content-addressed store, hash-verified

1606}
1607
1608static public IPersistentMap map(Object... init){
1609 if(init == null || init.length == 0)
1610 return PersistentArrayMap.EMPTY;
1611 else if(init.length <= PersistentArrayMap.HASHTABLE_THRESHOLD)
1612 return PersistentArrayMap.createWithCheck(init);
1613 return PersistentHashMap.createWithCheck(init);
1614}
1615
1616static public IPersistentMap mapUniqueKeys(Object... init){
1617 if(init == null)

Callers 15

mainMethod · 0.95
IntrinsicsClass · 0.95
CompilerClass · 0.95
parseMethod · 0.95
parseMethod · 0.95
evalMethod · 0.95
parseMethod · 0.95
emitConstantsMethod · 0.95
doEmitStaticMethod · 0.95
doEmitPrimMethod · 0.95
doEmitMethod · 0.95
emitMethod · 0.95

Calls 2

createWithCheckMethod · 0.95
createWithCheckMethod · 0.95

Tested by

no test coverage detected