Adrià
Adrià
Sure, I will use `@typeInfo` in the final version with many comptime checks. The new workflow should be: ```zig const rgb: Rgb(u8) = .{ .r = 247, .g = 164,...
It's a big refactor, it will take some time, though... I will call this `colorgate` as it seems to be the standard way of naming coding scandals in Zig: -...
Right, that would simplify functions such as `isColor`, since they would be trivial (or even made obsolete). But the enum should have what fields? A field for each colorspace times...
Yeah, I think I like this API: ```zig const std = @import("std"); pub fn main() !void { const rgb: Rgb(u8) = .{ .r = 247, .g = 164, .b =...