ObjFW  Diff

Differences From Artifact [45617fcf1b]:

To Artifact [8dbc96bba7]:


197
198
199
200
201
202
203
204

205
206

207
208
209

210
211

212
213
214
215
216
217
218
197
198
199
200
201
202
203

204
205

206
207
208

209
210

211
212
213
214
215
216
217
218







-
+

-
+


-
+

-
+







}

- (id const *)objects
{
	return [_array items];
}

- (id)objectAtIndex: (size_t)index
- (id)objectAtIndex: (size_t)idx
{
	return *((id *)[_array itemAtIndex: index]);
	return *((id *)[_array itemAtIndex: idx]);
}

- (id)objectAtIndexedSubscript: (size_t)index
- (id)objectAtIndexedSubscript: (size_t)idx
{
	return *((id *)[_array itemAtIndex: index]);
	return *((id *)[_array itemAtIndex: idx]);
}

- (void)getObjects: (id *)buffer
	   inRange: (of_range_t)range
{
	id *objects = [_array items];
	size_t count = [_array count];