Creates a generic tuple comprised of all elemetns of packed generic tuples packedTuples in sequence.
alias chain = ChainTuple!(packedExpressionTuple!(1, 2, 3), packedExpressionTuple!(4, 5)); static assert(chain == expressionTuple!(1, 2, 3, 4, 5));
Analog of $(STDREF range, chain) for generic tuples.
See Implementation
Creates a generic tuple comprised of all elemetns of packed generic tuples packedTuples in sequence.