On Thursday, 9 July 2015 at 15:03:25 UTC, deadalnix wrote:
On Thursday, 9 July 2015 at 14:29:55 UTC, Zoadian wrote:
It is a compiletime tuple so i'd vote for:
CtTuple

Too bad it is not a tuple and it is not exclusively compile time. Otherwise, that'd be a great name.

Really? Proof to the contrary: it cant be indexed without first being copied into a runtime construct, its as much compiletime only as UDAs are.

alias Tuple(Args...) = Args;
int main(string args[])
{
  return Tuple!(1,2)[args.length];
}

Reply via email to