static assert(is(CommonLvalueType!Ts));
static assert(!is(CommonLvalueType!Ts == void));
alias opStaticIndex(size_t i) = values[i];
CommonLvalueType!Ts[] opIndex()
return (&values[0])[0 .. values.length];
CommonLvalueType!Ts opIndex(size_t index)
in (index < values.length)
static foreach (i; 0 .. values.length)
case i: return values[i];
alias Tup = Tuple!(int, immutable(int));
static assert(is(typeof(tup[]) == const(int)[]));
static assert(is(typeof(tup.opIndex()) == const(int)[]));
static assert(is(typeof(tup.opStaticIndex!0) == int));
static assert(is(typeof(tup.opStaticIndex!1) == immutable(int)));
static assert(is(typeof(tup.opIndex(i)) == const(int)));
template CommonLvalueType(Ts...)
private alias Helper() = typeof({
static if (Ts.length != 0) return *mixin({
static foreach (i; 0 .. Ts.length - 1)
result ~= mixin("`cond() ? &(values[", i, "]) :`");
return result ~ mixin("`&(values[", Ts.length - 1, "])`");
static if (is(Helper!()))
alias CommonLvalueType = Helper!();
static assert(T.sizeof == CommonLvalueType.sizeof);
else alias CommonLvalueType = void;