You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve speed of bool-to-int conversions (elliotchance#796)
Use a simple function that tests the bool and returns 0 for false and 1 for true, rather than a map that does the same thing, as Go appears to compile the former into much faster code.