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
//: 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 |
OlderNewer