Skip to content

Files

Latest commit

95b82d6 · Feb 9, 2018

History

History
24 lines (19 loc) · 371 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 371 Bytes

Rust exercise with linked list

Following implementations of misc. lists from too-many-lists

Split into multitude of modules and heavily commented.

Methods:

  • new
  • clear
  • is_empty
  • size
  • push
  • pop
  • peek
  • peek_mut
  • append
  • peek_back

Traits implemented:

  • Drop
  • IntoIter
  • Display
  • Default