If you have code like this if Enum.count(x) > 1 do .... end
Can elixir optimise the line, and exit the count as soon as more than one element exists?
Is it worth me writing my own function for this? or is there a function that does this instead?
something like Enum.more_than(x, 1)