In other languages that have the pipeline operator, it's common to format call chains as follows: ```elixir data |> clean() |> format() |> process() ``` It would be great if this pipe operator could be used across lines in the same way.