7 releases (4 stable)

Uses old Rust 2015

1.1.0 Aug 26, 2017
1.0.2 Jun 3, 2017
1.0.1 Jan 20, 2017
1.0.0 Dec 27, 2016
0.1.2 Dec 19, 2016

#2049 in Rust patterns

Download history 912/week @ 2023-11-20 1538/week @ 2023-11-27 1672/week @ 2023-12-04 1506/week @ 2023-12-11 1223/week @ 2023-12-18 1365/week @ 2023-12-25 1147/week @ 2024-01-01 1318/week @ 2024-01-08 1563/week @ 2024-01-15 1313/week @ 2024-01-22 1647/week @ 2024-01-29 1378/week @ 2024-02-05 1080/week @ 2024-02-12 1135/week @ 2024-02-19 1143/week @ 2024-02-26 1380/week @ 2024-03-04

4,912 downloads per month
Used in 18 crates (3 directly)

Unlicense

8KB
85 lines

init_with

Documentation

Have you wanted to be able to initialize a fixed array in Rust by calling a function to create each element? Now you can!

use init_with::InitWith;

let my_array = {
    let mut seed = Vec::new();
    let mut next_val = 0;

    <[Vec<u32>; 3]>::init_with(|| {
        seed.push(next_val);
        next_val += 1;
        seed.clone()
    })
};

assert_eq!(my_array, [vec![0], vec![0, 1], vec![0, 1, 2]]);

Alternatively, init_with_indices can be used to more easily create array entries based on their index:

use init_with::InitWith;

let squares = <[usize; 5]>::init_with_indices(|i| i*i);

assert_eq!(squares, [0,1,4,9,16]);

This crate lets you initialize the array elements in a functional manner while hiding the unsafe code that's needed to do so.

To import this crate, put the following into your Cargo.toml:

[dependencies]
init_with = "1.1.0"

...and the following in your crate root:

extern crate init_with;

No runtime deps