We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Map.put_in_path should have the interface
fun
:create_path, parents, key
:create_value, parents, cur_value
{:create_value, fun}
parents, cur_value
value
{:create_path, fun}
parents, key as arguments
%{}
:replace
:make_and_append_to_list
make_and_prepend_to_list
:append_list
:prepend_list
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Map.put_in_path should have the interface
fun
a function with arguments (:create_path, parents, key
-> map:create_value, parents, cur_value
-> map{:create_value, fun}
where fun acceptsparents, cur_value
as arguments and returnsvalue
{:create_path, fun}
where fun acceptsparents, key as arguments
and returns the path element's value (%{}
by default):replace
: replaces the last element this is the default:make_and_append_to_list
make_and_prepend_to_list
:append_list
:prepend_list
The text was updated successfully, but these errors were encountered: