3 releases

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

#1436 in Data structures

Download history 3/week @ 2024-12-08 4/week @ 2025-02-02 1/week @ 2025-02-09 1/week @ 2025-02-16

97 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