wec 1.0.2

Useful vec!-like macros
Documentation
1
2
3
4
5
6
7
8
use wec::vinto;

// Make sure the behavior of vinto![] is the same as vec![] when creating empty
// vectors.

fn main() {
    let v = vinto![];
}