1 高阶函数 (High order function)
所谓高阶函数,就是函数的函数。
比如定义一个平方函数。
iex> square = fn x -> x * x end
#Function<6.17052888 in :erl_eval.expr/5>
iex> Enum.map(1..10, square)
[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
2 列表推导 (List Comprehensions)
iex> lc x inlist [1, 2], y inlist [3, 4], do: x * y
[3, 4, 6, 8]
Elixir, 你是Ruby和Erlang的娃! Elixir, 你是Ruby和Erlang的爱情的结果!
Elixir – The Love Child of Ruby and Erlang https://www.sitepoint.com/elixir-love-child-ruby-erlang/