2 stable releases

Uses old Rust 2015

1.1.0 May 2, 2016
1.0.0 Mar 13, 2016

#59 in #cast

Download history 216/week @ 2023-12-07 137/week @ 2023-12-14 71/week @ 2023-12-21 77/week @ 2023-12-28 121/week @ 2024-01-04 188/week @ 2024-01-11 134/week @ 2024-01-18 129/week @ 2024-01-25 170/week @ 2024-02-01 133/week @ 2024-02-08 162/week @ 2024-02-15 220/week @ 2024-02-22 222/week @ 2024-02-29 247/week @ 2024-03-07 388/week @ 2024-03-14 268/week @ 2024-03-21

1,186 downloads per month
Used in 2 crates

MIT/Apache

9KB
141 lines

This is a Rust crate to convert slices (which have run-time lengths) to arrays (which have compile-time lengths).

Documentation


lib.rs:

This crate provides macros to convert from slices, which have lengths that are stored and checked at runtime, into arrays, which have lengths known at compile time. This can make types more expressive (e.g. &[u8; 32] instead of &[u8]) and helps the compiler omit bounds checks.

slice_as_array!(xs, [u32; 4]) returns Some(&[u32; 4]) if xs was a slice of length 4, or None otherwise.

slice_as_array_mut!(ys, [String; 7]) returns Some(&mut [String; 7]) if ys was a slice of length 7, or None otherwise.

slice_to_array_clone!(zs, [String; 4] returns Some([String; 4]) if zs was a slice of length 4, or `None otherwise. The passed-in slice remains intact and its elements are cloned.

For most users, stating a dependency on this is simply:

[dependencies]
slice_as_array "1.1.0"

To support being called from a #![no_std] crate, this crate has a feature named with_std that is on by default. A #![no_std] crate should use:

[dependencies]
slice_as_array = { version = "1.1.0", default-features = false }

Example usage:

#[macro_use] extern crate slice_as_array;

fn slice_as_hash(xs: &[u8]) -> &[u8; 32] {
    slice_as_array!(xs, [u8; 32]).expect("bad hash length")
}

fn mutate_chunk(xs: &mut [u32; 10]) {
    // ...
}

fn mutate_chunks(xs: &mut [u32; 100]) {
    for chunk in xs.chunks_mut(10).map(|c| slice_as_array_mut!(c, [u32; 10]).unwrap() ) {
        mutate_chunk(chunk)
    }
}

Dependencies

~65KB