ObjFW  Diff

Differences From Artifact [6443cda90f]:

To Artifact [9ab2d4adfc]:


229
230
231
232
233
234
235
236


237
238
239
240
241
242
243
229
230
231
232
233
234
235

236
237
238
239
240
241
242
243
244







-
+
+







		@throw [OFOutOfRangeException exception];

	if ([self isKindOfClass: [OFMutableArray class]])
		return [OFArray
		    arrayWithObjects: (id *)_array.items + range.location
			       count: range.length];

	return [OFAdjacentSubarray arrayWithArray: self range: range];
	return [[[OFAdjacentSubarray alloc] initWithArray: self
						    range: range] autorelease];
}

- (bool)isEqual: (id)object
{
	OFArray *otherArray;
	id const *objects, *otherObjects;
	size_t count;