Aes.fieldNames

The names of the tuple's components. Unnamed fields have empty names.

struct Aes
alias fieldNames = staticMap!(extractName, fieldSpecs)

Examples

alias Fields = Tuple!(int, "id", string, float);
static assert(Fields.fieldNames == TypeTuple!("id", "", ""));

Meta