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

Method create

src/jvm/clojure/lang/StringSeq.java:25–29  ·  view source on GitHub ↗
(CharSequence s)

Source from the content-addressed store, hash-verified

23public final int i;
24
25static public StringSeq create(CharSequence s){
26 if(s.length() == 0)
27 return null;
28 return new StringSeq(null, s, 0);
29}
30
31StringSeq(IPersistentMap meta, CharSequence s, int i){
32 super(meta);

Callers 1

seqFromMethod · 0.95

Calls 1

lengthMethod · 0.65

Tested by

no test coverage detected