Eigenpoll : D wish list : tuple literal and append-op 

TypeTuple!() is too long, can't support nest and require to import module.
So need tuple literal.

current:
alias TypeTuple!(int, long) t;

new:
alias __tuple(int, long) t;

current:
alias TypeTuple!(tuple1, tuple2) t;

new:
alias __exp(tuple1 ~ tuple2) t;

current:
nothing

new:
alias __tuple(tuple1, tuple2) t;
alias t[0] u;//same as tuple1

Report this item for cleanup