vecless 0.2.1

A minimal, Vec-free, singly linked list with Display support and ergonomic APIs.
Documentation
1
2
3
4
5
6
7
use vecless::List;

fn main() {
    let list = List::new().add(["a", "b"]);
    println!("Length: {}", list.len());       // → 2
    println!("Is empty? {}", list.is_empty()); // → false
}