[Previous]
[Up]
[Next]
NSSet
Authors
- Richard Frith-Macdonald
-
Version: 0.1
Date: 28 February, 2000
Declared in: Foundation/NSSet.h
Inherits from: NSObject
Conforms to: NSCoding
+ (id) allocWithZone: (NSZone*)zone
+ (id) set
+ (id) setWithArray: (NSArray*)anArray
+ (id) setWithObject: (id)anObject
+ (id) setWithObjects: (id)anObject, ...
+ (id) setWithObjects: (id*)objects count: (unsigned int)count
+ (id) setWithArray: (NSSet*)aSet
- (NSArray*) allObjects
- (id) anyObject
- (BOOL) containsObject: (id)anObject
- (unsigned int) count
- (NSString*) description
- (NSString*) descriptionWithLocale: (NSDictionary*)locale
- (id) initWithArray: (NSArray*)array
- (id) initWithObjects: (id)anObject, ...
- (id) initWithObjects: (id*)objects count: (unsigned int)count
- (id) initWithSet: (NSSet*)otherSet
- (id) initWithSet: (NSSet*)otherSet copyItems: (BOOL)flag
- (BOOL) intersectsSet: (NSSet*)otherSet
- (BOOL) isEqualToSet: (NSSet*)otherSet
- (BOOL) isSubsetOfSet: (NSSet*)otherSet
- (void) makeObjectsPerform: (SEL)aSelector
- (void) makeObjectsPerformSelector: (SEL)aSelector
- (void) makeObjectsPerformSelector: (SEL)aSelector withObject: (id)anObject
- (void) makeObjectsPerform: (SEL)aSelector withObject: (id)anObject
- (id) member: (id)anObject
- (NSEnumerator*) objectEnumerator