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

Method seq

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

Source from the content-addressed store, hash-verified

549}
550
551static public ISeq seq(Object coll){
552 if(coll instanceof ASeq)
553 return (ASeq) coll;
554 else if(coll instanceof LazySeq)
555 return ((LazySeq) coll).seq();
556 else
557 return seqFrom(coll);
558}
559
560// N.B. canSeq must be kept in sync with this!
561static ISeq seqFrom(Object coll){

Callers 15

legacy_replMethod · 0.95
legacy_scriptMethod · 0.95
mainMethod · 0.95
equivMethod · 0.95
equalsMethod · 0.95
popMethod · 0.95
seqMethod · 0.95
doEqualsMethod · 0.95
doEquivMethod · 0.95
equivMethod · 0.95
equalsMethod · 0.95
entrySetMethod · 0.95

Calls 2

seqFromMethod · 0.95
seqMethod · 0.65

Tested by

no test coverage detected