It looks like the "ifnone" argument to Enum.find is ignored if the collection is a range: ``` iex(19)> Enum.find(1..2,3, &1 == 3) nil iex(20)> Enum.find([1,2],3, &1 == 3) 3 ```