vecmat 0.7.8

Low-dimensional vector algebra with min_const_generics support
Documentation
mod format;
mod init;
mod iter;

#[cfg(test)]
mod tests;

pub use iter::*;

/// Vector of fixed size.
#[repr(transparent)]
#[derive(Clone, Copy, PartialEq)]
pub struct Vector<T, const N: usize> {
    data: [T; N],
}