Alim Nastaev
Alim Nastaev
@zachdaniel what would be the best/quickest way to reproduce that behavior above? Thanks a lot!
Wow! Awesome! Thanks a lot for the super quick response! @zachdaniel 🥇
Kind of the same issue, but on MacOS Sonoma 14.4.1  Was that resolved by any chance somehow? Would really appreciate any help here!...
You also can loop using [Enum.filter/2](https://hexdocs.pm/elixir/1.12/Enum.html#filter/2) (or `Enum.reject/2` with reversed logic) ```elixir Enum.filter(all_numbers, &rem(&1, 2) == 0) ``` But underneath, it's all `reduce` or `tail call recursion`.