On 3/10/14, Kenji Hara <[email protected]> wrote: > This is questionable sentence. On the foreach with tuple iteration, break > and continue have no effect for the unrolling.
Whatever is implemented, we need to make sure the current code is
possible. in std.conv.to:
-----
switch(value)
{
foreach (I, member; NoDuplicates!(EnumMembers!S))
{
case member:
return to!T(enumRep!(immutable(T), S, I));
}
default:
}
-----
