https://github.com/lyonsyonii/mycollections
Manual implementation of Rust's std::collections. Made for fun.
https://github.com/lyonsyonii/mycollections
Last synced: 3 months ago
JSON representation
Manual implementation of Rust's std::collections. Made for fun.
- Host: GitHub
- URL: https://github.com/lyonsyonii/mycollections
- Owner: LyonSyonII
- Created: 2023-10-26T20:45:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-08T20:44:15.000Z (almost 2 years ago)
- Last Synced: 2024-12-31T17:46:00.431Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
My own implementations of the data structures in the Rust `std::collections` module.
All methods and structs are fully documented (enforced by `#[deny(missing_docs)]`).
All collections support ZSTs (zero-sized types).
Currently implemented:
- `Vec`
- `LinkedList`
- `Deque`