Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/clojure/clojure
/ lt
Method
lt
src/jvm/clojure/lang/Numbers.java:931–933 ·
view source on GitHub ↗
(Number x, Number y)
Source
from the content-addressed store, hash-verified
929
}
930
931
public
boolean lt(Number x, Number y){
932
return
toBigInt(x).lt(toBigInt(y));
933
}
934
935
public
boolean lte(Number x, Number y){
936
return
toBigInteger(x).compareTo(toBigInteger(y)) <= 0;
Callers
nothing calls this directly
Calls
2
toBigInt
Method · 0.80
lt
Method · 0.65
Tested by
no test coverage detected