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

Method more

src/jvm/clojure/lang/RT.java:740–747  ·  view source on GitHub ↗
(Object x)

Source from the content-addressed store, hash-verified

738}
739
740static public ISeq more(Object x){
741 if(x instanceof ISeq)
742 return ((ISeq) x).more();
743 ISeq seq = seq(x);
744 if(seq == null)
745 return PersistentList.EMPTY;
746 return seq.more();
747}
748
749//static public Seqable more(Object x){
750// Seqable ret = null;

Callers

nothing calls this directly

Calls 2

moreMethod · 0.95
seqMethod · 0.95

Tested by

no test coverage detected