Declare new methods.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1306 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-03-30 22:20:26 +00:00
parent 97e6ad9b21
commit f0408db3fb

View file

@ -1,5 +1,5 @@
/* Interface for NSArray for GNUStep
Copyright (C) 1995 Free Software Foundation, Inc.
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: 1995
@ -35,6 +35,8 @@
+ array;
+ arrayWithObject: anObject;
+ arrayWithObjects: firstObj, ...;
- (NSArray*) arrayByAddingObject: anObject;
- (NSArray*) arrayByAddingObjectsFromArray: (NSArray*)anotherArray;
- initWithObjects: (id*) objects count: (unsigned) count;
- initWithObjects: firstObj, ...;
- initWithArray: (NSArray*)array;
@ -83,6 +85,7 @@
- (void) removeObjectsFromIndices: (unsigned*)indices
numIndices: (unsigned)count;
- (void) removeObjectsInArray: (NSArray*)otherArray;
- (void) setArray:(NSArray *)otherArray;
- (void) sortUsingFunction: (int(*)(id,id,void*))compare
context: (void*)context;