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...
) {}

Members

Templates

_GenFieldList
template _GenFieldList(size_t ti, size_t i)
Undocumented in source.

Examples

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

Meta