pub fn is_perfect_cube_float(number: f64) -> bool
Expand description

Determines whether number is a perfect cube by comparing its cube root cubed with the original number. Returns true if the number is a perfect cube, otherwise false.