TypesOf

Returns the types of all values given.

$(OD isFunction!T then the typeof the address is taken if possible) $(OD If typeof(T) can be taken it is) $(OD Else it is appended on as is)

Members

Aliases

T
alias T = F
Undocumented in source.
T
alias T = typeof(Values[0])
Undocumented in source.
T
alias T = Values[0]
Undocumented in source.
TypesOf
alias TypesOf = AliasSeq!(T, TypesOf!(Values[1..$]))
Undocumented in source.
TypesOf
alias TypesOf = AliasSeq!()
Undocumented in source.

Return Value

AliasSeq of the resulting types

Meta