Expand description
This module contains the single trait IntegerCubeRoot
and implements it for primitive
integer types.
§Example
extern crate integer_cbrt;
// `use` trait to get functionality
use integer_cbrt::IntegerCubeRoot;
assert_eq!(8u8.integer_cbrt(), 2);
Traits§
- Integer
Cube Root - A trait implementing integer cube root.