mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
(arrayWithObjects): Add missing s.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@183 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
53f374bf8b
commit
500f445a7e
1 changed files with 7 additions and 4 deletions
|
@ -1,9 +1,6 @@
|
|||
/* Interface for NSArray for GNUStep
|
||||
Copyright (C) 1994 NeXT Computer, Inc.
|
||||
|
||||
Typed by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: August 1994
|
||||
|
||||
This file is part of the GNU Objective C Class Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
|
@ -26,12 +23,15 @@
|
|||
|
||||
#include <objects/stdobjects.h>
|
||||
#include <objects/Array.h>
|
||||
#include <foundation/NSRange.h>
|
||||
|
||||
@class NSEnumerator;
|
||||
|
||||
@interface NSArray : Array <NSCopying, NSMutableCopying>
|
||||
|
||||
+ (id) array;
|
||||
+ (id) arrayWithObject: anObject;
|
||||
+ (id) arrayWithObject: firstObject, ...;
|
||||
+ (id) arrayWithObjects: firstObject, ...;
|
||||
- (id) initWithArray: (NSArray*)array;
|
||||
- (id) initWithObjects: (id)firstObject, ...;
|
||||
- (id) initWithObjects: (id*)objects count: (unsigned int)count;
|
||||
|
@ -56,4 +56,7 @@
|
|||
|
||||
@end
|
||||
|
||||
@interface NSMutableArray : NSArray
|
||||
@end
|
||||
|
||||
#endif /* __NSArray_h_OBJECTS_INCLUDE */
|
||||
|
|
Loading…
Reference in a new issue