Removed old commented-out code.
[CleverRabbit.git] / RTKMutableArrayCategory.h
blob53dc7a8e35671bcea7412a86d3180ddf974185c6
1 //
2 // RTKMutableArrayCategory.h
3 // (CleverRabbit.app)
4 //
5 // Copyright (c) 2005 A. Karl Keller (http://karlk.net)
6 //
7 // This code is open-source, free software, made available without warranty under
8 // the terms of the GNU General Public License, either version 2 or later (see
9 // http://www.gnu.org/licenses/gpl.html or included copy); as such, it may be
10 // redistributed and/or modified in accordance with that document.
13 #import <Cocoa/Cocoa.h>
16 @interface NSMutableArray (RTKMutableArrayCategory)
18 - (NSMutableArray *)arrayWithObjectsAtIndexes:(id)indexes;
19 - (NSMutableArray *)arrayByRemovingObjectsAtIndexes:(id)indexes;
20 - (NSMutableArray *)deepCopy;
23 @end