Toggle navigation
1.
Introduction
2.
A Bad Stack
2.1.
Layout
2.2.
New
2.3.
Ownership 101
2.4.
Push
2.5.
Pop
2.6.
Testing
2.7.
Drop
2.8.
Final Code
3.
An Ok Stack
3.1.
Option
3.2.
Generic
3.3.
Peek
3.4.
IntoIter
3.5.
Iter
3.6.
IterMut
3.7.
Final Code
4.
A Persistent Stack
4.1.
Layout
4.2.
Basics
4.3.
Drop
4.4.
Arc
4.5.
Final Code
5.
A Bad Safe Deque
5.1.
Layout
5.2.
Building
5.3.
Breaking
5.4.
Peek
5.5.
Symmetric Cases
5.6.
Iteration
5.7.
Final Code
6.
An Unsafe Queue
6.1.
Layout
6.2.
Unsafe
6.3.
Basics
6.4.
Extras
6.5.
Final Code
7.
An Ok Unsafe Deque
8.
A Bunch of Silly Lists
8.1.
The Double Single
An Ok Unsafe Doubly-Linked Deque
Coming Soon!