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

Method lte

src/jvm/clojure/lang/Numbers.java:1049–1051  ·  view source on GitHub ↗
(Number x, Number y)

Source from the content-addressed store, hash-verified

1047 }
1048
1049 public boolean lte(Number x, Number y){
1050 return toBigDecimal(x).compareTo(toBigDecimal(y)) <= 0;
1051 }
1052
1053 public boolean gte(Number x, Number y){
1054 return toBigDecimal(x).compareTo(toBigDecimal(y)) >= 0;

Callers

nothing calls this directly

Calls 2

compareToMethod · 0.45
toBigDecimalMethod · 0.45

Tested by

no test coverage detected