func sorted() -> [Self.Element]
Returns the elements of the sequence, sorted.
シーケンスに属する要素を、ソートして返します。
Available when
Element
conforms to Comparable
.
Element
がComparable
に準拠する時に利用可能です。
func sorted(by: (Self.Element, Self.Element) -> Bool) -> [Self.Element]
Returns the elements of the sequence, sorted using the given predicate as the comparison between elements.
与えられた述部を要素間の比較として使ってソートされた、シーケンスの要素を返します。