Skip to content

Simplify use of enums #3

@Traxar

Description

@Traxar

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions