Check whether the tuple T is an expression tuple. An expression tuple only contains expressions.
static assert(isExpressions!(1, 2.0, "a")); static assert(!isExpressions!(int, double, string)); static assert(!isExpressions!(int, 2.0, "a"));
isTypeTuple.
See Implementation
Check whether the tuple T is an expression tuple. An expression tuple only contains expressions.