glucose 0.1.3

multipurpose math and physics crate for my projects
Documentation
use crate::numeric::identity::{One, Zero};
use crate::numeric::num::Num;
use std::ops::{
    BitAnd, BitAndAssign, BitOr, BitOrAssign, BitXor, BitXorAssign, Not, Shl, ShlAssign, Shr,
    ShrAssign,
};

pub trait BitNum: PartialEq + Zero + One + BitOps {}

pub trait BitOps<Rhs = Self, Output = Self>:
    BitAnd<Rhs, Output = Output>
    + BitOr<Rhs, Output = Output>
    + BitXor<Rhs, Output = Output>
    + Not<Output = Output>
    + Shl<Rhs, Output = Output>
    + Shr<Rhs, Output = Output>
{
}

pub trait BitAssignOps<Rhs = Self>:
    BitAndAssign<Rhs> + BitOrAssign<Rhs> + BitXorAssign<Rhs> + ShlAssign<Rhs> + ShrAssign<Rhs>
{
}

pub trait BitAssign: BitNum + BitAssignOps {}

impl<T> BitNum for T where T: Num + BitOps {}

impl<T, Rhs, Output> BitOps<Rhs, Output> for T where
    T: BitAnd<Rhs, Output = Output>
        + BitOr<Rhs, Output = Output>
        + BitXor<Rhs, Output = Output>
        + Not<Output = Output>
        + Shl<Rhs, Output = Output>
        + Shr<Rhs, Output = Output>
{
}

impl<T, Rhs> BitAssignOps<Rhs> for T where
    T: BitAndAssign<Rhs> + BitOrAssign<Rhs> + BitXorAssign<Rhs> + ShlAssign<Rhs> + ShrAssign<Rhs>
{
}

impl<T> BitAssign for T where T: BitNum + BitAssignOps {}