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

Method lte

src/jvm/clojure/lang/Numbers.java:256–258  ·  view source on GitHub ↗
(Object x, Object y)

Source from the content-addressed store, hash-verified

254}
255
256static public boolean lte(Object x, Object y){
257 return ops(x).combine(ops(y)).lte((Number)x, (Number)y);
258}
259
260static public boolean gt(Object x, Object y){
261 return ops(x).combine(ops(y)).lt((Number)y, (Number)x);

Callers 3

exceededBoundsMethod · 0.95
lteMethod · 0.95
hasheqFromMethod · 0.95

Calls 4

opsMethod · 0.95
lteMethod · 0.65
combineMethod · 0.65
doubleValueMethod · 0.45

Tested by

no test coverage detected