pub trait ConcatenatingSquare: Sized {
type Output: Integer;
// Required method
fn concatenating_square(&self) -> Self::Output;
}Expand description
Widening square: returns a value with a number of limbs equal to double the sum of the input.
Required Associated Types§
Required Methods§
Sourcefn concatenating_square(&self) -> Self::Output
fn concatenating_square(&self) -> Self::Output
Perform widening squaring.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.