Simple library that adds a piping possibility for easy returning from pipe chains
Imagine:
socket = socket |> assign(valid: true)
{:noreply, socket}
to write as:
socket |> assign(valid: true) |> noreply()
or: iex> "34" |> between_strings("12", "56") "123456"