Returns the active tag of a tagged union
pub fn activeTag(u: anytype) Tag(@TypeOf(u))
pub fn activeTag(u: anytype) Tag(@TypeOf(u)) { const T = @TypeOf(u); return @as(Tag(T), u); }