mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +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
97e6ad9b21
commit
f0408db3fb
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue