Elixir模式匹配功能
示例
#You can use pattern matching to run different
#functions based on which parameters you pass
#This example uses pattern matching to start,
#run, and end a recursive function
defmodule Counter do
def count_to do
count_to(100, 0) #No argument, init with 100
end
def count_to(counter) do
count_to(counter, 0) #Initialize the recursive function
end
def count_to(counter, value) when value == counter do
#This guard clause allows me to check my arguments against
#expressions. This ends the recursion when the value matches
#the number I am counting to.
:ok
end
def count_to(counter, value) do
#Actually do the counting
IO.putsvalue
count_to(counter, value + 1)
end
end
热门推荐
10 长辈生日横幅祝福语简短
11 送你妹妹新婚祝福语简短
12 老婆生日祝福语短句简短
13 老婆侄女礼物祝福语简短
14 搬家寄语祝福语大全简短
15 工厂祝福语简短10字
16 化学老师元旦祝福语简短
17 疫情高考父母祝福语简短
18 幼儿对父亲简短祝福语