https://github.com/karitham/zig-fcfs
A hashmap first-come-first-serve basic implementation in zig
https://github.com/karitham/zig-fcfs
Last synced: 3 months ago
JSON representation
A hashmap first-come-first-serve basic implementation in zig
- Host: GitHub
- URL: https://github.com/karitham/zig-fcfs
- Owner: karitham
- License: mit
- Created: 2022-03-25T23:40:26.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-06T16:01:19.000Z (about 3 years ago)
- Last Synced: 2025-01-22T05:29:46.467Z (4 months ago)
- Language: Zig
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zig-fcfs
Basic FCFS hashmap implemented in zig.
Extremely simple and readable code, mostly made to play around with zig's typing, and to learn how to build a hashmap.
The implementation is fully generic, in approximately 150 loc (doesn't include the hashing algorithm).
See the doc comment for details.