array-append

array-append exports a small family of functions for working with const-generic array types:

And a few aliases:

This library requires a nightly compiler due to the use of #![feature(generic_const_exprs)]. All unsafe code has been verified to be sound by manual proof and Miri.

This library does not yet require the standard library, but it is brought in anyway unless the std default feature is disabled. This is for forward-compatibility in case std-dependent code is ever added.

Example

Create a no-alloc builder:

```rust

![allow(incomplete_features)]

![feature(genericconstexprs)]

use array_append::push;

[derive(PartialEq, Debug)]

struct Built { whatever: [usize; N] }

struct Builder { whatever: [usize; N] }

impl Builder<0> { pub fn new() -> Self { Self { whatever: [] } } }

impl Builder { pub fn from_array(array: [usize; N]) -> Self { Self { whatever: array } }

pub fn with_usize(self, new: usize) -> Builder<{N + 1}> {
    // Can't use `Self` here, because `Self` is `Builder<N>`
    Builder { whatever: push(self.whatever, new) }
}

pub fn build(self) -> Built<N> {
    Built { whatever: self.whatever }
}

}

asserteq!( Builder::new() .withusize(1) .withusize(2) .withusize(3) .build(), Builder::from_array([1, 2, 3]).build() ); ```