Alias Members

Returns the same as _traits(allMembers, aggregate) mapped with the Quirks template

alias Members(alias aggregate) = MemberNames!aggregate;

Example

struct S {
    long id;
    int age;
    string name() {
        return "name";
    }
}

Members!S.length; // is 3