24 #import <Foundation/Foundation.h>
28 #pragma mark Class Constants
38 #define NSMutableSetClass @"NSMutableSet"
57 #pragma mark Copying Sets
60 - (void)setObjects:(
id<
SCCollectioning>)object, ... NS_REQUIRES_NIL_TERMINATION;
63 #pragma mark Adding Objects
64 - (void)addObjects:(
id<
SCCollectioning>)object, ... NS_REQUIRES_NIL_TERMINATION;
66 - (void)addArray:(NSArray *)array;
67 - (void)addObjectsFromSet:(NSSet *)set;
68 - (void)addSet:(NSSet *)set;
71 #pragma mark Removing Objects
72 - (void)removeObjectsWithClass:(Class)oclass;
73 - (void)removeObjectsWithClassName:(NSString *)name;
75 - (void)removeObjects:(
id<
SCCollectioning>)object, ... NS_REQUIRES_NIL_TERMINATION;
Caregory NSSet(SCSet) header file.
Mutable collections protocol.
Definition: SCCollectionProtocols.h:597
Standard class NSMutableSet functionality extending category.
Definition: NSMutableSet+SCMutableSet.h:54
Collections communications protocol.
Definition: SCCollectioning.h:79
Abstract collections class.
Definition: SCCollection.h:98