#include <OOExcludeObjectEnumerator.h>
Definition at line 31 of file OOExcludeObjectEnumerator.h.
◆ dealloc
◆ enumeratorWithEnumerator:excludingObject:
+ (id) enumeratorWithEnumerator: |
|
(NSEnumerator *) | enumerator |
excludingObject: |
|
(id) | object |
Definition at line 1 of file OOExcludeObjectEnumerator.m.
53 :(NSEnumerator *)enumerator
54 excludingObject:(id)object
55{
56 if (
object ==
nil)
return enumerator;
57 if (enumerator ==
nil)
return nil;
58
59 return [[[self alloc] initWithEnumerator:enumerator excludingObject:object] autorelease];
60}
◆ initWithEnumerator:excludingObject:
- (id) initWithEnumerator: |
|
(NSEnumerator *) | enumerator |
excludingObject: |
|
(id) | object |
|
implementation |
Definition at line 1 of file OOExcludeObjectEnumerator.m.
31 :(NSEnumerator *)enumerator
32 excludingObject:(id)object
33{
34 if ((self = [super init]))
35 {
38 }
39
40 return self;
41}
NSEnumerator * _enumerator
◆ nextObject
◆ _enumerator
- (NSEnumerator*) _enumerator |
|
private |
◆ _excludeObject
The documentation for this class was generated from the following files: