stack-array 0.1.1

A data structure for storing and manipulating fixed number of elements of a specific type.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
This library provides an array type that is similar to the built-in Vec type, but lives on the stack!

You may use this library to store a fixed number of elements of a specific type (even non-copy type!).

# Example


```rust
use array::Array;

let mut array: Array<String; 4> = Array::new();

array.push("Hello".to_string());
array.push("World".to_string());

println!("{:#?}", array);
```

See source code for more test example.