Documentation
  • Coverage
  • 3.7%
    1 out of 27 items documented1 out of 24 items with examples
  • Size
  • Source code size: 8.84 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 4.55 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Fea-Sin

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));