ClojureDocs

Nav

Namespaces

cbrt

clojure.math

Available since 1.11
  • (cbrt a)
Returns the cube root of a.
If a is ##NaN => ##NaN
If a is ##Inf or ##-Inf => a
If a is zero => zero with sign matching a
See: https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html#cbrt-double-