ObjFW  Diff

Differences From Artifact [aaf401cec7]:

To Artifact [e6d36fbf2d]:


173
174
175
176
177
178
179
180
181


182
183
184
185


186
187
188
189
190
191
192
173
174
175
176
177
178
179


180
181
182
183


184
185
186
187
188
189
190
191
192







-
-
+
+


-
-
+
+







- copy
{
	return [[OFArray alloc] initWithArray: self];
}

- (void)addObject: (id)object
{
	[self addObject: object
		atIndex: [self count]];
	[self insertObject: object
		   atIndex: [self count]];
}

- (void)addObject: (id)object
	  atIndex: (size_t)index
- (void)insertObject: (id)object
	     atIndex: (size_t)index
{
	@throw [OFNotImplementedException exceptionWithClass: isa
						    selector: _cmd];
}

- (void)replaceObjectAtIndex: (size_t)index
		  withObject: (id)object