Function valuesFromFields [src]
Looks up the supplied fields in the given enum type.
Uses only the field names, field values are ignored.
The result array is in the same order as the input.
Prototype
pub inline fn valuesFromFields(comptime E: type, comptime fields: []const EnumField) []const E
Parameters
E: type
fields: []const EnumField
Source
pub inline fn valuesFromFields(comptime E: type, comptime fields: []const EnumField) []const E {
comptime {
var result: [fields.len]E = undefined;
for (&result, fields) |*r, f| {
r.* = @enumFromInt(f.value);
}
const final = result;
return &final;
}
}