| Crates.io | rustl |
| lib.rs | rustl |
| version | 0.0.1 |
| created_at | 2024-04-08 01:15:32.071729+00 |
| updated_at | 2024-04-08 01:15:32.071729+00 |
| description | a coolection of data structures, container & algorithms |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1199680 |
| size | 8,935 |
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());
: