Locate code examples and data structure implementations
mainThis repository serves as a code companion for the book Rust Atomics and Locks by Mara Bos. Depending on what you are looking for, the code is organized into two main directories:
- Examples: Contains runnable code examples for Chapters 1, 2, 3, and 8. These are located in the
examples/directory. - Data Structures: Contains the implementations of custom data structures for Chapters 4, 5, 6, and 9. These are located in the
src/directory.