Created
July 25, 2015 01:37
-
-
Save stochastic-thread/1febcb4ac17228a3cde6 to your computer and use it in GitHub Desktop.
Enum.reduce with custom function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks @chvanikoff