#![feature(const_trait_impl, const_mut_refs, const_fn_floating_point_arithmetic)]
mod impls;
pub use impls::*;
#[const_trait]
pub trait Add<Rhs = Self> {
type Output;
fn add(self, rhs: Rhs) -> Self::Output;
}
#[const_trait]
pub trait AddAssign<Rhs = Self> {
fn add_assign(&mut self, rhs: Rhs);
}
#[const_trait]
pub trait BitAnd<Rhs = Self> {
type Output;
fn bitand(self, rhs: Rhs) -> Self::Output;
}
#[const_trait]
pub trait BitAndAssign<Rhs = Self> {
fn bitand_assign(&mut self, rhs: Rhs);
}
#[const_trait]
pub trait BitOr<Rhs = Self> {
type Output;
fn bitor(self, rhs: Rhs) -> Self::Output;
}
#[const_trait]
pub trait BitOrAssign<Rhs = Self> {
fn bitor_assign(&mut self, rhs: Rhs);
}
#[const_trait]
pub trait BitXor<Rhs = Self> {
type Output;
fn bitxor(self, rhs: Rhs) -> Self::Output;
}
#[const_trait]
pub trait BitXorAssign<Rhs = Self> {
fn bitxor_assign(&mut self, rhs: Rhs);
}
#[const_trait]
pub trait Div<Rhs = Self> {
type Output;
fn div(self, rhs: Rhs) -> Self::Output;
}
#[const_trait]
pub trait DivAssign<Rhs = Self> {
fn div_assign(&mut self, rhs: Rhs);
}
#[const_trait]
pub trait Mul<Rhs = Self> {
type Output;
fn mul(self, rhs: Rhs) -> Self::Output;
}
#[const_trait]
pub trait MulAssign<Rhs = Self> {
fn mul_assign(&mut self, rhs: Rhs);
}
#[const_trait]
pub trait Neg {
type Output;
fn neg(self) -> Self::Output;
}
#[const_trait]
pub trait Not {
type Output;
fn not(self) -> Self::Output;
}
#[const_trait]
pub trait Rem<Rhs = Self> {
type Output;
fn rem(self, rhs: Rhs) -> Self::Output;
}
#[const_trait]
pub trait RemAssign<Rhs = Self> {
fn rem_assign(&mut self, rhs: Rhs);
}
#[const_trait]
pub trait Shl<Rhs = Self> {
type Output;
fn shl(self, rhs: Rhs) -> Self::Output;
}
#[const_trait]
pub trait ShlAssign<Rhs = Self> {
fn shl_assign(&mut self, rhs: Rhs);
}
#[const_trait]
pub trait Shr<Rhs = Self> {
type Output;
fn shr(self, rhs: Rhs) -> Self::Output;
}
#[const_trait]
pub trait ShrAssign<Rhs = Self> {
fn shr_assign(&mut self, rhs: Rhs);
}
#[const_trait]
pub trait Sub<Rhs = Self> {
type Output;
fn sub(self, rhs: Rhs) -> Self::Output;
}
#[const_trait]
pub trait SubAssign<Rhs = Self> {
fn sub_assign(&mut self, rhs: Rhs);
}
#[const_trait]
pub trait PartialEq<Rhs = Self> {
fn eq(&self, other: &Rhs) -> bool;
#[inline]
fn ne(&self, other: &Rhs) -> bool {
!self.eq(other)
}
}