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
Logical comparisons like Enum.count(x) > y could exit out when count of x exceeds y. potentially saving huge amounts of time with larger collections, or be changed to Enum.count_until(x, y) by the compiler.
P.s. I dont create many issue reports, hopefully my formatting is ok :)
The text was updated successfully, but these errors were encountered:
As mentioned on Elixir Forum
Logical comparisons like
Enum.count(x) > y
could exit out when count of x exceeds y. potentially saving huge amounts of time with larger collections, or be changed to Enum.count_until(x, y) by the compiler.P.s. I dont create many issue reports, hopefully my formatting is ok :)
The text was updated successfully, but these errors were encountered: