Эликсир Энум все

Enum.all?(["foo", "bar", "hello"], fn(s) -> String.length(s) == 3 end)
false
Enum.all?(["foo", "bar", "hello"], fn(s) -> String.length(s) > 1 end)
true
Juan D Khusuma