Skip to content

Instantly share code, notes, and snippets.

View patzearfoss's full-sized avatar

Pat Zearfoss patzearfoss

View GitHub Profile
//: Playground - noun: a place where people can play
import UIKit
extension Array where Element: FloatingPoint {
/// Returns the sum of all elements in the array
var total: Element {
return reduce(0, +)
}
/// Returns the average of all elements in the array