Alias sequence.
$(D_KEYWORD true) if Args consists only of expressions, $(D_KEYWORD false) otherwise.
static assert(isExpressions!(5, 8, 2)); static assert(isExpressions!()); static assert(!isExpressions!(int, uint, Object)); static assert(!isExpressions!(int, 8, Object)); template T(U) { } static assert(!isExpressions!T);
Tells whether Args contains only expressions.
An expression is determined by applying $(D_KEYWORD typeof) to an argument: