Enum.map converts results with 2-item-tuples where the first item is an atom to a keyword-list. This has it’s use cases, but when you want to keep the tuples, what is the idiomatic way to achieve this?
For example: [1, 2, 3] |> Enum.map(& if &1 < 2, do: {:ok, "< 2"}, else: {:errror, "not < 2"})