#[allow(unused_imports)]
use crate::prelude::*;
use std::fmt::{Debug, Display};
use std::ops::{Add, Div, Mul, Neg, Sub};
pub trait Scalar:
Copy
+ Clone
+ Debug
+ Display
+ Add<Self, Output = Self>
+ Sub<Self, Output = Self>
+ Mul<Self, Output = Self>
+ Div<Self, Output = Self>
+ PartialEq
+ PartialOrd
+ Neg<Output = Self>
{
const ZERO: Self;
}
impl Scalar for i8 {
const ZERO: Self = 0;
}
impl Scalar for i16 {
const ZERO: Self = 0;
}
impl Scalar for i32 {
const ZERO: Self = 0;
}
impl Scalar for i64 {
const ZERO: Self = 0;
}
impl Scalar for f32 {
const ZERO: Self = 0.0;
}
impl Scalar for f64 {
const ZERO: Self = 0.0;
}
pub trait IntScalar: Scalar + Eq + Ord {}
impl IntScalar for i8 {}
impl IntScalar for i16 {}
impl IntScalar for i32 {}
impl IntScalar for i64 {}