pub trait Split: Float {
// Required method
fn split_factor() -> Self;
// Provided method
fn split(self) -> (Self, Self) { ... }
}Expand description
Split a floating-point number
Required Methods§
sourcefn split_factor() -> Self
fn split_factor() -> Self
Split factor used in the algorithm
Provided Methods§
sourcefn split(self) -> (Self, Self)
fn split(self) -> (Self, Self)
Object Safety§
This trait is not object safe.