The names of the Tuple's components. Unnamed fields have empty names.
import std.meta : AliasSeq; alias Fields = Tuple!(int, "id", string, float); static assert(Fields.fieldNames == AliasSeq!("id", "", ""));
See Implementation
The names of the Tuple's components. Unnamed fields have empty names.