vecless 0.2.1

A minimal, Vec-free, singly linked list with Display support and ergonomic APIs.
Documentation
  • Coverage
  • 57.89%
    11 out of 19 items documented5 out of 12 items with examples
  • Size
  • Source code size: 23.96 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 4.43 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 15s Average build duration of successful builds.
  • all releases: 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Documentation
  • Pjdur/vecless
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Pjdur

vecless

vecless is a minimal, ergonomic, singly linked list implementation in Rust — no Vec required.

Features

  • ✅ No Vec or heap-allocated arrays
  • ✅ Supports .add(...) with any iterable
  • ✅ Implements Display for clean printing with {}

Example

use vecless::List;

fn main() {
    let list = List::new().add(["a", "b", "c"]);
    println!("{}", list); // Output: [a, b, c]
}