Elixir管道运算符和括号

示例

需要括号以避免模棱两可:

foo 1 |> bar 2 |> baz 3

应写为:

foo(1) |> bar(2) |> baz(3)