作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个接收带有许多键的 map 的功能,其中一些是可选的。如何在允许可选键默认为某些东西的同时编写理解 map 的函数签名?
def handle_my_map(%{text: text,
print_times: print_times, # this I want to default to 2
color: color # this I want to default to "Blue"
}) do
Enum.each(1..print_times, fn (_) -> IO.puts ["(", color, "): ", text] end)
end
Test.handle_my_map(%{text: "here", print_times: 5, color: "Red"})
# (Red): here
# (Red): here
# (Red): here
# (Red): here
# (Red): here
handle_my_map(%{text: "there"})
# => MatchError!
handle_my_map(%{text: "where", print_times: 3})
# (Blue): where
# (Blue): where
# (Blue): where
handle_my_map(%{text: "there"})
# (Blue): there
# (Blue): there
def handle_my_map(text: nil, print_times: 2, color: 'Blue')
最佳答案
您可以使用 Map.merge/2
:
defmodule Handler do
@defaults %{print_times: 2, color: "Blue"}
def handle_my_map(map) do
%{text: text, print_times: times, color: color} = merge_defaults(map)
Enum.each(1..times, fn (_) -> IO.puts ["(", color, "): ", text] end)
end
defp merge_defaults(map) do
Map.merge(@defaults, map)
end
end
Map.merge/3
并更改
merge_defaults/1
到:
defp merge_defaults(map) do
Map.merge(@defaults, map, fn _key, default, val -> val || default end)
end
关于elixir - 带有可选键的模式匹配映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24775701/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!