Skip to content

Instantly share code, notes, and snippets.

@lucaswkuipers
Created December 24, 2023 22:55
Show Gist options
  • Save lucaswkuipers/c4fb4c74d0d56b08f5328e027e623db6 to your computer and use it in GitHub Desktop.
Save lucaswkuipers/c4fb4c74d0d56b08f5328e027e623db6 to your computer and use it in GitHub Desktop.
Sum extension to numeric collections
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