-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
It would be very nice for zig-sqlite to deal with converting enums to ints and back on its own. Having to write this at call site causes unnecessary boilerplate. As seen in this example:
try select.bind(.{
.id = filter.id,
.name = filter.name,
.status = @enumToInt(filter.status),
});
instead of just being able to:
try select.bind(filter);
Metadata
Metadata
Assignees
Labels
No labels