ExpressionList

Simple expression list wrapper. *

template ExpressionList (
T...
) {}

Examples

Example

static assert([ExpressionList!(1, 2, 3)] == [1, 2, 3]);

See Also

Expression list at dlang.org documentation.

Meta