lessvec 0.1.0

A custom Vec implementation using the Rust standard library.
Documentation
# lessvec

A minimal, educational Vec-like collection implemented with only the Rust standard library.

[![crates.io](https://img.shields.io/crates/v/lessvec.svg)](https://crates.io/crates/lessvec) [![docs.rs](https://docs.rs/lessvec/badge.svg)](https://docs.rs/lessvec) [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) [![Build Status](https://github.com/bakayu/lessvec/actions/workflows/CI.yml/badge.svg)](https://github.com/bakayu/lessvec/actions/workflows/CI.yml) [![GitHub tag](https://img.shields.io/github/v/tag/bakayu/lessvec.svg)](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)