# lessvec
A minimal, educational Vec-like collection implemented with only the Rust standard library.
[](https://crates.io/crates/lessvec) [](https://docs.rs/lessvec) [](LICENSE) [](https://github.com/bakayu/lessvec/actions/workflows/CI.yml) [](https://github.com/bakayu/lessvec/releases)
## Quick example
```rust
use lessvec::LessVec;
let mut v = LessVec::new();
v.push(1);
v.push(2);
assert_eq!(v.as_slice(), &[1, 2]);
```
## License
[MIT LICENSE](./LICENSE)