Samond Classes Library 1.2.1-RELEASE build 181
NSMutableSet+SCMutableSet.h
Go to the documentation of this file.
1 //
2 // NSMutableSet+SCMutableSet.h
3 // scl
4 //
5 // Created by Viacheslav Smolensky on 13.05.12.
6 // Copyright (c) 2007 - 2017 by Samond Development Corporation. All rights reserved.
7 //
8 
24 #import <Foundation/Foundation.h>
25 #import <scl/NSSet+SCSet.h>
26 
27 #pragma mark -
28 #pragma mark Class Constants
29 
33 #define NSMutableSetClass @"NSMutableSet"
34 
35 
49 
50 #pragma mark -
51 #pragma mark Copying Sets
52 - (void)setCollection:(id<SCCollection>)collection;
53 - (void)setObject:(id<SCCollectioning>)object;
54 - (void)setObjects:(id<SCCollectioning>)object, ... NS_REQUIRES_NIL_TERMINATION;
55 
56 #pragma mark -
57 #pragma mark Adding Objects
58 - (void)addObjects:(id<SCCollectioning>)object, ... NS_REQUIRES_NIL_TERMINATION;
59 - (void)addCollection:(id<SCCollection>)collection;
60 
61 #pragma mark -
62 #pragma mark Removing Objects
63 - (void)removeObjectsWithClass:(Class)oclass;
64 - (void)removeObjectsWithClassName:(NSString *)name;
65 - (void)removeCollection:(id<SCCollection>)collection;
66 - (void)removeObjects:(id<SCCollectioning>)object, ... NS_REQUIRES_NIL_TERMINATION;
67 
68 @end
Mutable collections protocol.
Definition: SCCollectionProtocols.h:743
Standard class NSMutableSet functionality extending category.
Definition: NSMutableSet+SCMutableSet.h:48
Collections communications protocol.
Definition: SCCollectioning.h:80
Abstract collections class.
Definition: SCCollection.h:94