1
2
3
4
5
6
7
8
9
10
# Construct

The `vec!` macro is pretty great, but it does only create `Vec`s.  **Construct**
contains a macro that lets you construct containers from any type that implements
the `Construct` trait.  By default, all of the standard library containers are
included.

### Example

^code(./examples/demo.rs)