1 unstable release
0.0.1 | Apr 8, 2024 |
---|
#473 in #container
8KB
118 lines
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());
: