typealias String.UnicodeScalarView.Iterator.Element
The type of element traversed by the iterator.
このイテレータによって辿っていかれる要素の型。
Availability
Technology
@frozen struct Iterator
By default, a collection conforms to the Sequence
protocol by supplying Indexing
as its associated Iterator
type.
初期状態で、あるコレクションはSequence
プロトコルに、Indexing
をそれの関連Iterator
型として提供することによって準拠します。
Note 注意
This documentation comment was inherited from Collection
.
この文書化コメントは、Collection
から引き継がれました。
typealias String.UnicodeScalarView.Iterator.Element
func next() -> Unicode.Scalar?
nil
if no next element exists.
次の要素へ進んでそれを返します、または次の要素が存在しないならばnil
を返します。