Enum.any?/1
defmodule Enum do
def any?(enumerable)
end
Returns true if at least one element in enumerable is truthy.
If no element in enumerable is truthy then the function returns false.
On empty enumerables this function returns false.