construct 0.0.3

A macro for building container literals.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Construct

The `vec!` macro is pretty great, but it does only create `Vec`s.  The
`construct!` macro works for any type that implements `iter::Extend`, which
is basically every collection!

## Install

**Cargo.toml**

```
[dependencies]
construct = "*"
```

## Example

^code(./examples/demo.rs)