| Crates.io | doubly |
| lib.rs | doubly |
| version | 1.2.3 |
| created_at | 2015-01-22 19:33:34.419709+00 |
| updated_at | 2025-10-01 08:00:31.718881+00 |
| description | Doubly-linked lists in Rust |
| homepage | https://github.com/marchelzo/doubly |
| repository | |
| max_upload_size | |
| id | 854 |
| size | 17,103 |
extern crate doubly;
use doubly::DoublyLinkedList;
fn main() {
let my_list: DoublyLinkedList<i32> = DoublyLinkedList::new_empty();
for k in 1..999999 {
my_list.push_back(k);
}
my_list[7] = 85;
for k in my_list.iter().take(10) {
println!("{}", k);
}
}