我无法理解其原因:
1..1000 |> Stream.map(&(3 * &1)) |> Enum.sum
虽然没有:
1..1000 |> Stream.map (&(3 * &1)) |> Enum.sum
唯一的区别是.map
之后的空格
根据我的理解,在这种情况下,Elixir不应该关心白色空间。
在iex
中运行上述代码会产生以下错误:
warning: you are piping into a function call without parentheses, which may be ambiguous. Please wrap the function you are piping into in parentheses. For example:
foo 1 |> bar 2 |> baz 3
Should be written as:
** (FunctionClauseError) no function clause matching in Enumerable.Function.reduce/3
foo(1) |> bar(2) |> baz(3)
(elixir) lib/enum.ex:2776: Enumerable.Function.reduce(#Function<6.54118792/1 in :erl_eval.expr/5>, {:cont, 0}, #Function<44.12486327/2 in Enum.reduce/3>)
(elixir) lib/enum.ex:1486: Enum.reduce/3
为什么管道运营商会在这两种情况之间进行区分?
答案 0 :(得分:10)
空格会改变优先级的解析方式:
iex(4)> quote(do: Stream.map(1) |> Enum.sum) |> Macro.to_string
"Stream.map(1) |> Enum.sum()"
iex(5)> quote(do: Stream.map (1) |> Enum.sum) |> Macro.to_string
"Stream.map(1 |> Enum.sum())"
此外,Elixir不支持在函数和括号之间留出空格 - 它只对一元函数有效,因为括号是可选的:foo (1)
与foo((1))
相同。您可以看到具有更多参数的函数不支持它:
iex(2)> quote(do: foo (4, 5))
** (SyntaxError) iex:2: unexpected parentheses.
If you are making a function call, do not insert spaces between
the function name and the opening parentheses.
Syntax error before: '('