pub trait ArangeNum: Element + PartialOrd {
// Required methods
fn from_f64(v: f64) -> Self;
fn to_f64(self) -> f64;
}Expand description
Trait for types usable with arange — numeric types that support
stepping and comparison.
Required Methods§
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.