On 12/17/13 9:17 AM, Andrej Mitrovic wrote:
On 12/17/13, Byron <[email protected]> wrote:I don't know why we can't do this instead:if (foo in ["alpha", "beta", "delta"] ) {You can come pretty close with: if (foo in A["alpha", "beta", "delta"] )
Wouldn't
if (foo in LiteralSet("alpha", "beta", "delta"))
be a ton faster?
Andrei
