rustl 0.0.1

a coolection of data structures, container & algorithms
Documentation
  • Coverage
  • 6.67%
    1 out of 15 items documented1 out of 10 items with examples
  • Size
  • Source code size: 8.46 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 418.15 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • esiddiqui

This repository holds a collection of containers, data structure & algorithms; so just like the C++ STL, thus named the rustl (Rust STL) :)

  use rustl::collections::LinkedList 

  :

    let mut list = LinkedList::new('r'); 
    list.insert('u');
    list.insert('s');
    list.insert('t');
    list.insert('l');

    println!("{}",list.to_string().as_str());

  :