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

Method lt

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

Source from the content-addressed store, hash-verified

820 }
821
822 public boolean lt(Number x, Number y){
823 Ratio rx = toRatio(x);
824 Ratio ry = toRatio(y);
825 return Numbers.lt(rx.numerator.multiply(ry.denominator), ry.numerator.multiply(rx.denominator));
826 }
827
828 public boolean lte(Number x, Number y){
829 Ratio rx = toRatio(x);

Callers

nothing calls this directly

Calls 3

ltMethod · 0.95
toRatioMethod · 0.80
multiplyMethod · 0.65

Tested by

no test coverage detected