1 unstable release
| 0.1.0 | May 15, 2022 |
|---|
#443 in No standard library
11KB
55 lines
array-append
array-append exports a small family of functions for working with
const-generic array types:
concatwhich concatenates two arrayspush_rightandpush_leftwhich add an element to the end or beginning of an array respectivelysplitandsplit_endwhich split an array into two arrayspop_rightandpop_leftwhich separate the last or first element respectively from an array
And a few aliases:
push/popforpush_right/pop_rightrespectivelyunshift/shiftforpush_left/pop_leftrespectively
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:
#![allow(incomplete_features)]
#![feature(generic_const_exprs)]
use array_append::push;
#[derive(PartialEq, Debug)]
struct Built<const N: usize> {
whatever: [usize; N]
}
struct Builder<const N: usize> {
whatever: [usize; N]
}
impl Builder<0> {
pub fn new() -> Self {
Self { whatever: [] }
}
}
impl<const N: usize> Builder<N> {
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 }
}
}
assert_eq!(
Builder::new()
.with_usize(1)
.with_usize(2)
.with_usize(3)
.build(),
Builder::from_array([1, 2, 3]).build()
);