Instance Method
インスタンスメソッド
makeIterator()
Returns an iterator over the elements of the collection.
コレクションの要素すべてを対象としたイテレータを返します。
Technology
- Swift Standard Library
Swift標準ライブラリ
See Also
参照
Iterating over a String's Characters
文字列の持つ文字のすべてにわたって反復する
func forEach((Character) -> Void)
Calls the given closure on each element in the sequence in the same order as a for
-in
loop.
指定されたクロージャをそのシーケンスの各要素上でfor
-in
ループと同じ順番で呼び出します。
func enumerated() -> EnumeratedSequence<String>
Returns a sequence of pairs (n, x), where n represents a consecutive integer starting at zero and x represents an element of the sequence.
ペア (n, x) のシーケンスを返します、そこでnはゼロで開始する連続した数を表して、xはシーケンスの要素を表します。