integer-cbrt 0.1.2

An implementation of integer cube root algorithm for primitive rust types
Documentation
  • Coverage
  • 100%
    4 out of 4 items documented1 out of 4 items with examples
  • Size
  • Source code size: 6.89 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 605.49 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • maurolacy/integer-cbrt-rs
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • maurolacy

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);
# }