Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/callmestech/lists
following the book "Learning Rust With Too Many Linked Lists"
https://github.com/callmestech/lists
Last synced: about 1 month ago
JSON representation
following the book "Learning Rust With Too Many Linked Lists"
- Host: GitHub
- URL: https://github.com/callmestech/lists
- Owner: callmestech
- Created: 2023-01-29T19:41:03.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-12T16:38:13.000Z (over 1 year ago)
- Last Synced: 2024-09-25T16:09:06.635Z (5 months ago)
- Language: Rust
- Size: 47.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
- awesome-rust-list - callmestech/lists
- awesome-rust-list - callmestech/lists
README
## Learning Rust With Entirely Too Many Linked Lists
---
- [x] 2. A Bad Stack
- [x] 2.1 Layout
- [x] 2.2 New
- [x] 2.3 Ownership 101
- [x] 2.4 Push
- [x] 2.5 Pop
- [x] 2.6 Testing
- [x] 2.7 Drop
- [x] 2.8 Final Code
- [x] 3. An Ok Stack
- [x] 3.1 Option
- [x] 3.2 Generic
- [x] 3.3 Peek
- [x] 3.4 IntoIter
- [x] 3.5 Iter
- [x] 3.6 IterMut
- [x] 3.7 Final Code
- [x] 4. A Persistent Stack
- [x] 4.1 Layout
- [x] 4.2 Basics
- [x] 4.3 Drop
- [x] 4.4 Arc
- [x] 4.5 Final Code
- [x] 5. A Bad Safe Deque
- [x] 5.1 Layout
- [x] 5.2 Building Up
- [x] 5.3 Breaking
- [x] 5.4 Peeking
- [x] 5.5 Symmetric Junk
- [x] 5.6 Iteration
- [x] 5.7 Final Code
- [x] 6. An Ok Unsafe Deque
- [x] 6.1 Layout
- [x] 6.2 Unsafe
- [x] 6.3 Basics
- [x] 6.4 Miri
- [x] 6.5 Stacked Borrows
- [x] 6.6 Testing Stacked Borrows
- [x] 6.7 Layout + Basics Redux
- [x] 6.8 Extras
- [x] 6.9 Final Code
- [ ] 7. A Production Unsafe Deque
- [x] 7.1 Layout
- [x] 7.2 Variance and Subtyping
- [x] 7.3 Basics
- [x] 7.4 Panic Safety
- [x] 7.5 Boring Combinatorics
- [x] 7.6 Filling in Random Bits
- [x] 7.7 Testing
- [x] 7.8 Send, Sync, and Compile Tests
- [x] 7.9 An Introduction to Cursors
- [x] 7.10 Implementing Cursors
- [ ] 7.11 Testing Cursors
- [ ] 7.12
- [ ] 8. A Bunch of Silly Lists
- [ ] 8.1
- [ ] 8.2---
A [link](https://rust-unofficial.github.io/too-many-lists/) to the source