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

Method keys

src/jvm/clojure/lang/RT.java:640–645  ·  view source on GitHub ↗
(Object coll)

Source from the content-addressed store, hash-verified

638}
639
640static public ISeq keys(Object coll){
641 if(coll instanceof IPersistentMap)
642 return APersistentMap.KeySeq.createFromMap((IPersistentMap)coll);
643 else
644 return APersistentMap.KeySeq.create(seq(coll));
645}
646
647static public ISeq vals(Object coll){
648 if(coll instanceof IPersistentMap)

Callers 11

seqMethod · 0.95
seqMethod · 0.95
seqFromMethod · 0.95
CompilerClass · 0.95
parseMethod · 0.95
ctorTypesMethod · 0.95
compileMethod · 0.95
emitLetFnInitsMethod · 0.95
compileStubMethod · 0.95
parseMethod · 0.95
readRecordMethod · 0.95

Calls 3

seqMethod · 0.95
createFromMapMethod · 0.45
createMethod · 0.45

Tested by

no test coverage detected