ggmath 0.17.1

A linear algebra library for games and graphics with generic SIMD types.
Documentation
/// A marker type to restrict `const N: usize` to `2`, `3` and `4`.
///
/// `Length<N>` and [`SupportedLength`] are markers used by types like
/// [`Vector<N, T, A>`] to restrict `N` to `2`, `3` and `4`.
///
/// [`Vector<N, T, A>`]: crate::Vector
pub struct Length<const N: usize>;

/// A marker trait to restrict `const N: usize` to `2`, `3` and `4`.
///
/// [`Length<N>`] and `SupportedLength` are markers used by types like
/// [`Vector<N, T, A>`] to restrict `N` to `2`, `3` and `4`.
///
/// [`Vector<N, T, A>`]: crate::Vector
#[expect(private_bounds)]
pub trait SupportedLength: Sealed {
    #[doc(hidden)]
    type Select<T2: Copy, T3: Copy, T4: Copy>: Copy;
}

impl SupportedLength for Length<2> {
    type Select<T2: Copy, T3: Copy, T4: Copy> = T2;
}

impl SupportedLength for Length<3> {
    type Select<T2: Copy, T3: Copy, T4: Copy> = T3;
}

impl SupportedLength for Length<4> {
    type Select<T2: Copy, T3: Copy, T4: Copy> = T4;
}

trait Sealed {}

impl Sealed for Length<2> {}
impl Sealed for Length<3> {}
impl Sealed for Length<4> {}