Philipp retweetledi

TIL starting iex command with pipe operator will use previously returned expression as the first parameter:
iex(20)> [1, 2, 3]
[1, 2, 3]
iex(21)> |> Enum.map(fn x -> x + 1 end)
[2, 3, 4]
It is there since 2021 :P #myelixirstatus
English






























