func compactMap <ElementOfResult>((Element) -> ElementOfResult?) -> [ElementOfResult]
Returns an array containing the non-
nil
results of calling the given transformation with each element of this sequence.
指定された変換をこのシーケンスの各要素で呼び出す結果で非-nil
のものを含んでいる配列を返します。
func flatMap <SegmentOfResult>((Element) -> SegmentOfResult) -> [SegmentOfResult.Element]
Returns an array containing the concatenated results of calling the given transformation with each element of this sequence.
指定された変換をこのシーケンスの各要素で呼び出す結果を連結したものを含んでいる配列を返します。
func reduce<Result>(Result, (Result, Element) -> Result) -> Result
Returns the result of combining the elements of the sequence using the given closure.
与えられたクロージャを使って、このシーケンスの要素それらを結合する結果を返します。
func reduce<Result>(into: Result, (inout Result, Element) -> ()) -> Result
Returns the result of combining the elements of the sequence using the given closure.
与えられたクロージャを使って、このシーケンスの要素それらを結合する結果を返します。
func sorted() -> [Element]
Returns the elements of the sequence, sorted.
シーケンスに属する要素を、ソートして返します。
Available when
Element
conforms to Comparable
.
Element
がComparable
に準拠する時に利用可能です。
func sorted(by: (Element, Element) -> Bool) -> [Element]
Returns the elements of the sequence, sorted using the given predicate as the comparison between elements.
与えられた述部を要素間の比較として使ってソートされた、シーケンスの要素を返します。
func shuffled() -> [Element]
Returns the elements of the sequence, shuffled.
入れ替えた、シーケンスの要素を返します。
func shuffled<T>(using: inout T) -> [Element]
Returns the elements of the sequence, shuffled using the given generator as a source for randomness.
シーケンスの要素を返します、与えられた生成子を無作為さの出典として使って混ぜ合わされます。
var lazy: LazySequence<Set<Element>>
A sequence containing the same elements as this sequence, but on which some operations, such as
map
and filter
, are implemented lazily.
このシーケンスと同じ要素を含んでいるシーケンス、しかしそれの上で何らかの演算、例えばmap
やfilter
が遅延に実装されます。