Created
December 24, 2023 22:55
-
-
Save lucaswkuipers/c4fb4c74d0d56b08f5328e027e623db6 to your computer and use it in GitHub Desktop.
Sum extension to numeric collections
This file contains hidden or 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
extension Collection where Element: Numeric { | |
var sum: Element { | |
reduce(0, +) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment