У меня есть функция, которая получает карту со многими ключами, некоторые из них являются необязательными. Как я могу написать подпись функции, понимающую карту, позволяя необязательным клавишам по умолчанию что-то?
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
Что-то вроде аргументов ключевого слова ruby:
def handle_my_map(text: nil, print_times: 2, color: 'Blue')