What's missing in DDB.zig? Help me pick the next data types

:bar_chart: 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)strboolfloat (f64)

Question for the community:
What’s missing for your use cases?

:small_blue_diamond: u8, u16, u32, u64 — unsigned ints
:small_blue_diamond: ?T — optionals (true NULL in db)
:small_blue_diamond: enum — tagged enums
:small_blue_diamond: []T / [N]T — arrays & slices
:small_blue_diamond: Nested structs (saving structs inside structs)
:small_blue_diamond: Something else? Drop it in the comments!

:backhand_index_pointing_right: Vote in the Discussion (or react below :+1:)
:backhand_index_pointing_right: Repo: github.com/Neon32eeee/DDB.zig — take a look, star if it’s interesting :star: