builtins
A comptime array of all the builtin themes sorted alphabetically
Source
Implementation
pub const builtins = blk: {
const S = struct {
fn lessThan(context: void, lhs: Theme, rhs: Theme) bool {
_ = context;
return std.mem.lessThan(u8, lhs.name, rhs.name);
}
};
const decls = @typeInfo(builtin).@"struct".decls;
var array: [decls.len]Theme = undefined;
for (decls, 0..) |decl, i| {
array[i] = @field(builtin, decl.name);
}
std.mem.sort(Theme, &array, {}, S.lessThan);
break :blk array;
}