func nextObject () -> Any?
Returns the next object from the collection being enumerated.
列挙されているコレクションから次のオブジェクトを返します。
Availability 有効性
Technology
var allObjects: [Any] { get }
This array contains all the remaining objects of the enumerator in enumerated order. It does not contain objects that have already been enumerated with previous next
messages.
この配列は、この列挙子の残っている全てのオブジェクトを列挙された順番で含みます。それは、以前のnext
メッセージで既に列挙されてしまったオブジェクトを含みません。
Accessing this property exhausts the enumerator’s collection so that subsequent invocations of next
return nil
.
このプロパティにアクスセすることは、列挙の持つコレクションを使い果たします、それでnext
のその後の発動はnil
を返します。
func nextObject () -> Any?