Up
Authors
- Andrew Kachites McCallum (
mccallum@gnu.ai.mit.edu
)
-
Version: 1.20
Date: 2005/05/22 03:32:13
Copyright: (C) 1995, 1996 Free Software Foundation, Inc.
- Declared in:
- Foundation/NSEnumerator.h
Availability: OpenStep
Simple class for iterating over a collection of objects, usually returned from an
NSArray
or similar.
Method summary
- (
NSArray*)
allObjects;
Availability: OpenStep
Returns all objects remaining in the enumeration as an array.
- (id)
nextObject;
Availability: OpenStep
Returns next object in enumeration, or nil
if none remain. Use code like while (object = [enumerator nextObject]) {...}
.
Up