Returns the types of all values given.
$(OD If 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)
AliasSeq of the resulting types
import std.meta: AliasSeq; static assert(is(TypesOf!("hello", 1, 2, 3.0, real) == AliasSeq!(string, int, int, double, real)));
See Implementation
Returns the types of all values given.
$(OD If 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)