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

Method compare

src/jvm/clojure/lang/Compiler.java:3417–3419  ·  view source on GitHub ↗
(Object s1, Object s2)

Source from the content-addressed store, hash-verified

3415 Object[] mungeStrs = RT.toArray(RT.keys(m));
3416 Arrays.sort(mungeStrs, new Comparator() {
3417 public int compare(Object s1, Object s2) {
3418 return ((String) s2).length() - ((String) s1).length();
3419 }});
3420 StringBuilder sb = new StringBuilder();
3421 boolean first = true;
3422 for(Object s : mungeStrs)

Callers

nothing calls this directly

Calls 1

lengthMethod · 0.65

Tested by

no test coverage detected