Instance Property インスタンスプロパティ

allObjects

The array of unenumerated objects. 列挙されないオブジェクトからなる配列。

Declaration 宣言

var allObjects: [Any] { get }

Discussion 議論

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 nextObject() messages. この配列は、この列挙子の残っている全てのオブジェクトを列挙された順番で含みます。それは、以前のnextObject()メッセージで既に列挙されてしまったオブジェクトを含みません。

Accessing this property exhausts the enumerator’s collection so that subsequent invocations of nextObject() return nil. このプロパティにアクスセすることは、列挙の持つコレクションを使い果たします、それでnextObject()のその後の発動はnilを返します。

See Also 参照

Getting the Enumerated Objects 列挙されるオブジェクトを取得する

Related Documentation 関連文書