integer-cbrt 0.1.2

An implementation of integer cube root algorithm for primitive rust types
Documentation
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; # fn main() { assert_eq!(8u8.integer_cbrt(), 2); # } ``` [`IntegerCubeRoot`]: ./trait.IntegerCubeRoot.html