StackOverflow 文档 Elixir Language 教程 模式匹配 在地图上匹配的模式 在地图上匹配的模式 Created: November-22, 2018 %{username: username} = %{username: "John Doe", id: 1} # username == "John Doe" %{username: username, id: 2} = %{username: "John Doe", id: 1} ** (MatchError) no match of right hand side value: %{id: 1, username: "John Doe"} 元组列表上的模式匹配