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 = Array::new();

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

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

See source code for more test example.