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

Method lt

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

Source from the content-addressed store, hash-verified

1043 }
1044
1045 public boolean lt(Number x, Number y){
1046 return toBigDecimal(x).compareTo(toBigDecimal(y)) < 0;
1047 }
1048
1049 public boolean lte(Number x, Number y){
1050 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