Samond Classes Library 1.2.0-RELEASE build 166
SCMutableIndexedCollection.h
Go to the documentation of this file.
1 //
2 // SCMutableIndexedCollection.h
3 // scl
4 //
5 // Created by Viacheslav Smolensky on 10.02.16.
6 // Copyright (c) 2007 - 2017 by Samond Development Corporation. All rights reserved.
7 //
8 
23 #import <scl/SCIndexedCollection.h>
24 
39 
40 #pragma mark -
41 #pragma mark Добавление объектов
42 
59 - (void)insertObject:(id)object atIndex:(SCIndex)index;
60 
61 #pragma mark -
62 #pragma mark Удаление объектов
63 
78 - (void)removeObjectAtIndex:(SCIndex)index;
79 
90 - (void)removeObjectsAtIndexes:(NSIndexSet *)indexes;
91 
92 #pragma mark -
93 #pragma mark Замена объектов
94 
111 - (void)replaceObjectAtIndex:(SCIndex)index withObject:(id)object;
112 
113 @end
SCULong SCIndex
Index data type.
Definition: SCTypes.h:240
Mutable indexed collection protocol.
Definition: SCMutableIndexedCollection.h:38
Indexed collections protocol.
Definition: SCIndexedCollection.h:39