mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-29 11:31:11 +00:00
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:
parent
21ac08e531
commit
1e3ef5cf83
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
/* Interface for NSArray for GNUStep
|
/* 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>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: 1995
|
Date: 1995
|
||||||
|
@ -35,6 +35,8 @@
|
||||||
+ array;
|
+ array;
|
||||||
+ arrayWithObject: anObject;
|
+ arrayWithObject: anObject;
|
||||||
+ arrayWithObjects: firstObj, ...;
|
+ arrayWithObjects: firstObj, ...;
|
||||||
|
- (NSArray*) arrayByAddingObject: anObject;
|
||||||
|
- (NSArray*) arrayByAddingObjectsFromArray: (NSArray*)anotherArray;
|
||||||
- initWithObjects: (id*) objects count: (unsigned) count;
|
- initWithObjects: (id*) objects count: (unsigned) count;
|
||||||
- initWithObjects: firstObj, ...;
|
- initWithObjects: firstObj, ...;
|
||||||
- initWithArray: (NSArray*)array;
|
- initWithArray: (NSArray*)array;
|
||||||
|
@ -83,6 +85,7 @@
|
||||||
- (void) removeObjectsFromIndices: (unsigned*)indices
|
- (void) removeObjectsFromIndices: (unsigned*)indices
|
||||||
numIndices: (unsigned)count;
|
numIndices: (unsigned)count;
|
||||||
- (void) removeObjectsInArray: (NSArray*)otherArray;
|
- (void) removeObjectsInArray: (NSArray*)otherArray;
|
||||||
|
- (void) setArray:(NSArray *)otherArray;
|
||||||
- (void) sortUsingFunction: (int(*)(id,id,void*))compare
|
- (void) sortUsingFunction: (int(*)(id,id,void*))compare
|
||||||
context: (void*)context;
|
context: (void*)context;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue