vecless 0.1.0

A minimal, Vec-free, singly linked list with Display support and ergonomic APIs.
Documentation
  • Coverage
  • 56.25%
    9 out of 16 items documented5 out of 9 items with examples
  • Size
  • Source code size: 20.71 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.55 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 18s Average build duration of successful builds.
  • all releases: 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Documentation
  • Repository
  • 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]
}