func sorted() -> [Character]
Returns the elements of the sequence, sorted.
シーケンスに属する要素を、ソートして返します。
func sorted(by: (Character, Character) -> Bool) -> [Character]
Returns the elements of the sequence, sorted using the given predicate as the comparison between elements.
与えられた述部を要素間の比較として使ってソートされた、シーケンスの要素を返します。
func reversed() -> ReversedCollection<String>
Returns a view presenting the elements of the collection in reverse order.
コレクションの要素を逆順に表しているある見方を返します。
func shuffled<T>(using: inout T) -> [Character]
Returns the elements of the sequence, shuffled using the given generator as a source for randomness.
シーケンスの要素を返します、与えられた生成子を無作為さの出典として使って混ぜ合わされます。