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

Method negativeStep

src/jvm/clojure/lang/Range.java:47–53  ·  view source on GitHub ↗
(final Object end)

Source from the content-addressed store, hash-verified

45}
46
47private static BoundsCheck negativeStep(final Object end) {
48 return new BoundsCheck() {
49 public boolean exceededBounds(Object val){
50 return Numbers.lte(val, end);
51 }
52 };
53}
54
55private Range(Object start, Object end, Object step, BoundsCheck boundsCheck){
56 this.end = end;

Callers 1

createMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected