Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
library
/
compiler-builtins
/
libm
/
src
/
math
/
approx
/
mod.rs
blob: da0d0bf39efc4d0b2c3cea73b459c671ea08886f [
file
] [
edit
]
//! Approximate implementations.
//!
//! These functions may be smaller or faster than those in the main `math` module, but will
//! not be as accurate.
mod
cbrtf64
;
pub
use
cbrtf64
::
cbrtf64
;