mccallum@gnu.ai.mit.edu
)Version: 1.19
Date: 2005/02/22 11:22:44
Copyright: (C) 1995, 1996 Free Software Foundation, Inc.
- Declared in:
- Foundation/NSEnumerator.h
Standards:
- MacOS-X
- OpenStep
- GNUstep
Simple class for iterating over a collection of objects, usually returned from an NSArray or similar.
Method summaryReturns all objects remaining in the enumeration as an array.
Returns next object in enumeration, or
nil
if none remain. Use code like
while (object = [enumerator nextObject]) {...}
.