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

Determines if the given f64 number is a perfect power by comparing its square root squared with the original number. Returns true if the number is a perfect power, otherwise false.