pub trait CheckedIsqrt: Sized {
type Output;
// Required method
fn checked_isqrt(self) -> Option<Self::Output>;
}Expand description
Integer square root of signed values, None for negative inputs.
Required Associated Types§
Required Methods§
fn checked_isqrt(self) -> Option<Self::Output>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".