(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:
mccallum 1995-03-23 03:45:25 +00:00
parent 53f374bf8b
commit 500f445a7e

View file

@ -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 */