DDB.zig: what data types do you need?
Hey! I’m the author of DDB.zig — a tiny embedded db for Zig.
Right now the lib supports four types:
int (i32) • str • bool • float (f64)
Question for the community:
What’s missing for your use cases?
u8, u16, u32, u64 — unsigned ints
?T — optionals (true NULL in db)
enum — tagged enums
[]T / [N]T — arrays & slices
Nested structs (saving structs inside structs)
Something else? Drop it in the comments!
Vote in the Discussion (or react below
)
Repo: github.com/Neon32eeee/DDB.zig — take a look, star if it’s interesting ![]()