3 releases

0.1.2 Oct 14, 2024
0.1.1 Oct 12, 2024
0.1.0 Oct 11, 2024

#841 in Data structures

Download history 377/week @ 2024-10-08 90/week @ 2024-10-15

467 downloads per month

MIT license

7KB
219 lines

rt-lists

简单链表实现

依赖

[dependencies]
rt-lists = "0.1"

Example

use rt_lists::third::List;
let mut list = List::new();
list.push(1);
list.push(2);
assert_eq!(list.pop(), Some(2));

No runtime deps