func compactMap <ElementOfResult>((Character) -> 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>((Character) -> 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, Character) -> Result) -> Result
Returns the result of combining the elements of the sequence using the given closure.
与えられたクロージャを使って、このシーケンスの要素それらを結合する結果を返します。
func reduce<Result>(into: Result, (inout Result, Character) -> ()) -> Result
Returns the result of combining the elements of the sequence using the given closure.
与えられたクロージャを使って、このシーケンスの要素それらを結合する結果を返します。
var lazy: LazySequence<String>
A sequence containing the same elements as this sequence, but on which some operations, such as
map
and filter
, are implemented lazily.
このシーケンスと同じ要素を含んでいるシーケンス、しかしそれの上で何らかの演算、例えばmap
やfilter
が遅延に実装されます。