All Values For A Key In A Keyword List
A keyword list in Elixir can contain the same key multiple times.
The get/2
function will only grab the value of the first occurrence.
You can use get_values/2
to retrieve all values associated with the key.
Last updated