generic-array 1.4.3

Generic types implementing functionality of arrays
Documentation
//! Const default implementation

use crate::{ArrayLength, GenericArray, GenericArrayImplEven, GenericArrayImplOdd};
use const_default::ConstDefault;

impl<T, U: ConstDefault> ConstDefault for GenericArrayImplEven<T, U> {
    const DEFAULT: Self = Self {
        parents: [U::DEFAULT; 2],
        _marker: core::marker::PhantomData,
    };
}

impl<T: ConstDefault, U: ConstDefault> ConstDefault for GenericArrayImplOdd<T, U> {
    const DEFAULT: Self = Self {
        parents: [U::DEFAULT; 2],
        data: T::DEFAULT,
    };
}

impl<T, U: ArrayLength> ConstDefault for GenericArray<T, U>
where
    U::ArrayType<T>: ConstDefault,
{
    const DEFAULT: Self = Self {
        data: ConstDefault::DEFAULT,
    };
}

// `T: ConstDefault` is intentionally redundant to provide better hints in the docs
impl<T: ConstDefault, U: ArrayLength> GenericArray<T, U>
where
    Self: ConstDefault,
{
    /// Returns the constant "default value" for an array using [ConstDefault]
    #[inline(always)]
    pub const fn const_default() -> Self {
        Self::DEFAULT
    }
}

#[cfg(test)]
mod tests {
    use crate::{arr, typenum::U4, GenericArray};
    use const_default::ConstDefault;

    #[test]
    fn const_default_works() {
        // Use runtime (non-`const`) bindings: a `const` context is evaluated at
        // compile time and so is invisible to runtime coverage instrumentation.

        // exercises the recursive `GenericArrayImplEven`/`Odd` and `GenericArray` DEFAULT consts
        let a: GenericArray<i32, U4> = <GenericArray<i32, U4> as ConstDefault>::DEFAULT;
        assert_eq!(a, arr![0, 0, 0, 0]);

        // and the `const_default()` convenience accessor
        let b: GenericArray<i32, U4> = GenericArray::const_default();
        assert_eq!(b, arr![0, 0, 0, 0]);
    }
}