FieldList

Like std.typecons.Tuple, but a template mixin. Unlike std.typecons.Tuple, names may not be omitted - but repeating types may be.

mixin template FieldList (
Fields...
)

Examples

FieldList!(ubyte, "r", "g", "b", ushort, "a");

Meta