In Swift 2.0, how would you go about sorting an array of custom objects by a property? I know in Swift 1.2, this was done using sorted() and sort(). However, these methods n
sort is now sortInPlace (or something similar) with the same parameters as sort.