@@ -11,11 +11,10 @@ #include #import "OFObject.h" #import "OFEnumerator.h" -#import "OFFastEnumeration.h" @class OFDataArray; @class OFString; /** @@ -48,11 +47,11 @@ + arrayWithObjects: (OFObject*)first, ...; /** * Creates a new OFArray with the objects from the specified C array. * - * \param objs A C array of objects. + * \param objs A C array of objects, terminated with nil * \return A new autoreleased OFArray */ + arrayWithCArray: (OFObject**)objs; /** @@ -82,11 +81,11 @@ argList: (va_list)args; /** * Initializes an OFArray with the objects from the specified C array. * - * \param objs A C array of objects + * \param objs A C array of objects, terminated with nil * \return An initialized OFArray */ - initWithCArray: (OFObject**)objs; /**