ClojureDocs

Nav

Namespaces

floor-div

clojure.math

Available since 1.11
  • (floor-div x y)
Integer division that rounds to negative infinity (as opposed to zero).
The special case (floorDiv Long/MIN_VALUE -1) overflows and returns Long/MIN_VALUE.
See: https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html#floorDiv-long-long-