Skip to content

Instantly share code, notes, and snippets.

@stochastic-thread
Created July 25, 2015 01:37
Show Gist options
  • Save stochastic-thread/1febcb4ac17228a3cde6 to your computer and use it in GitHub Desktop.
Save stochastic-thread/1febcb4ac17228a3cde6 to your computer and use it in GitHub Desktop.
Enum.reduce with custom function
m = [%{val: 1}, %{val: 2}, %{val: 10}]
>> [%{val: 1}, %{val: 2}, %{val: 10}]
Enum.reduce(m, 0, fn(%{val: val}, acc) -> acc + val end)
>> 13
@stochastic-thread
Copy link
Author

thanks @chvanikoff

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment