func map<T>((Character) -> T) -> [T]
Returns an array containing the results of mapping the given closure over the sequence’s elements.
与えられたクロージャをシーケンスのもつ要素全体にわたってマップする結果を含んでいる配列を返します。
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.
与えられたクロージャを使って、このシーケンスの要素それらを結合する結果を返します。