use super::SimdBits;
use core::{
fmt::{Debug, Display, Octal},
hash::Hash,
iter::{Product, Sum},
ops::{Add, AddAssign, Div, DivAssign, Mul, MulAssign, Rem, RemAssign, Sub, SubAssign},
ops::{BitAnd, BitAndAssign, BitOr, BitOrAssign, BitXor, BitXorAssign, Not},
ops::{Shl, ShlAssign, Shr, ShrAssign},
simd::SimdElement,
};
mod u32;
mod u64;
pub trait Bits
where
Self: Send + Sync + Clone + Copy + Default,
Self: PartialEq + Eq + PartialOrd + Ord,
Self: Product<Self> + Sum<Self>,
for<'a> Self: Product<&'a Self> + Sum<&'a Self>,
Self: Hash,
Self: Debug + Octal + Display,
Self: Add<Output = Self> + AddAssign,
Self: Sub<Output = Self> + SubAssign,
Self: Mul<Output = Self> + MulAssign,
Self: Div<Output = Self> + DivAssign,
Self: Rem<Output = Self> + RemAssign,
Self: Shl<Output = Self> + ShlAssign,
Self: Shr<Output = Self> + ShrAssign,
Self: BitAnd<Output = Self> + BitAndAssign,
Self: BitOr<Output = Self> + BitOrAssign,
Self: BitXor<Output = Self> + BitXorAssign,
for<'a> Self: Add<&'a Self, Output = Self> + AddAssign<&'a Self>,
for<'a> Self: Sub<&'a Self, Output = Self> + SubAssign<&'a Self>,
for<'a> Self: Mul<&'a Self, Output = Self> + MulAssign<&'a Self>,
for<'a> Self: Div<&'a Self, Output = Self> + DivAssign<&'a Self>,
for<'a> Self: Rem<&'a Self, Output = Self> + RemAssign<&'a Self>,
for<'a> Self: Shl<&'a Self, Output = Self> + ShlAssign<&'a Self>,
for<'a> Self: Shr<&'a Self, Output = Self> + ShrAssign<&'a Self>,
for<'a> Self: BitAnd<&'a Self, Output = Self> + BitAndAssign<&'a Self>,
for<'a> Self: BitOr<&'a Self, Output = Self> + BitOrAssign<&'a Self>,
for<'a> Self: BitXor<&'a Self, Output = Self> + BitXorAssign<&'a Self>,
Self: Not<Output = Self>,
Self: SimdElement,
{
type Simd<const N: usize>: SimdBits<Self, N>;
const MIN: Self;
const MAX: Self;
const ONE: Self;
#[must_use]
fn saturating_add(self, other: Self) -> Self;
#[must_use]
fn saturating_sub(self, other: Self) -> Self;
#[must_use]
#[inline]
fn abs_sub(self, other: Self) -> Self {
self.saturating_sub(other) | other.saturating_sub(self)
}
#[must_use]
#[inline]
fn splat<const N: usize>(self) -> Self::Simd<N> {
Self::Simd::splat(self)
}
#[must_use]
#[inline]
fn as_simd<const N: usize>(slice: &[Self]) -> (&[Self], &[Self::Simd<N>], &[Self]) {
Self::Simd::as_simd(slice)
}
#[must_use]
#[inline]
fn as_simd_mut<const N: usize>(
slice: &mut [Self],
) -> (&mut [Self], &mut [Self::Simd<N>], &mut [Self]) {
Self::Simd::as_simd_mut(slice)
}
}