ObjFW  Diff

Differences From Artifact [15a4b9e206]:

To Artifact [118e27647e]:


374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
}

- (const void *)items
{
	return _items;
}

- (const void *)itemAtIndex: (size_t)index
{
	if (index >= _count)
		@throw [OFOutOfRangeException exception];

	return _items + index * _itemSize;
}

- (const void *)firstItem
{
	if (_items == NULL || _count == 0)
		return NULL;








|

|


|







374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
}

- (const void *)items
{
	return _items;
}

- (const void *)itemAtIndex: (size_t)idx
{
	if (idx >= _count)
		@throw [OFOutOfRangeException exception];

	return _items + idx * _itemSize;
}

- (const void *)firstItem
{
	if (_items == NULL || _count == 0)
		return NULL;