-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Access.values/0 #14350
Add Access.values/0 #14350
Conversation
lib/elixir/lib/access.ex
Outdated
iex> get_in([1, 2, 3], [Access.values()]) | ||
** (RuntimeError) Access.values/0 expected a map, got: [1, 2, 3] | ||
""" | ||
@spec values() :: Access.access_fun(data :: map(), current_value :: list()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@spec values() :: Access.access_fun(data :: map(), current_value :: list()) | |
@doc since: "1.19.0" | |
@spec values() :: Access.access_fun(data :: map(), current_value :: list()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added in f7705f4. Thanks for noticing!
lib/elixir/lib/access.ex
Outdated
iex> get_in([1, 2, 3], [Access.keys()]) | ||
** (RuntimeError) Access.keys/0 expected a map, got: [1, 2, 3] | ||
""" | ||
@spec keys() :: Access.access_fun(data :: map(), current_value :: list()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@spec keys() :: Access.access_fun(data :: map(), current_value :: list()) | |
@doc since: "1.19.0" | |
@spec keys() :: Access.access_fun(data :: map(), current_value :: list()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks @xxdavid ! 💜
Let's not add |
Okay, I'll drop |
I added the support for keyword lists in the last commit. I was thinking about what to allow as a keyword list and I've come to a pragmatic decision to check whether the first element of a list is a 2-tuple and the first element of that tuple is an atom. If not, we'll raise with I've also added unit tests as it got a bit more complex. And I've also found that some doctests for |
lib/elixir/lib/access.ex
Outdated
Enum.map(data, fn {_key, value} -> next.(value) end) | ||
end | ||
|
||
defp values_keyword(:get_and_update, data, next) do | ||
{reverse_gets, reverse_updated_data} = | ||
Enum.reduce(data, {[], []}, fn {key, value}, {gets, data_acc} -> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps we should still have guards to be sure it's a keyword?
Enum.map(data, fn {_key, value} -> next.(value) end) | |
end | |
defp values_keyword(:get_and_update, data, next) do | |
{reverse_gets, reverse_updated_data} = | |
Enum.reduce(data, {[], []}, fn {key, value}, {gets, data_acc} -> | |
Enum.map(data, fn {key, value} when is_atom(key) -> next.(value) end) | |
end | |
defp values_keyword(:get_and_update, data, next) do | |
{reverse_gets, reverse_updated_data} = | |
Enum.reduce(data, {[], []}, fn {key, value}, {gets, data_acc} when is_atom(key) -> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I looked at Keyword.filter/2
and Keyword.values/1
and they don't seem to be that strict. But why not. 🙂 Added in 8b4aa0f.
💚 💙 💜 💛 ❤️ |
Hi, I am adding
Access.values/0
as discussed here, and alsoAccess.keys/0
for parity with keys. If you thinkAccess.keys/0
is not useful and should not be added, I can remove it from the PR.I am not adding any explicit unit tests as I find the coverage by doctests enough, but I can write some if you wish so.
Thank you for reviewing the changes!