ObjFW  Diff

Differences From Artifact [720a88390f]:

To Artifact [ce913f08f5]:


638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
	} @finally {
		[self freeMemory: tmp];
	}

	return ret;
}

- (id)reduceUsingBlock: (of_array_reduce_block_t)block
{
	size_t count = [array count];
	__block id current;

	if (count == 0)
		return nil;
	if (count == 1)







|







638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
	} @finally {
		[self freeMemory: tmp];
	}

	return ret;
}

- (id)foldUsingBlock: (of_array_fold_block_t)block
{
	size_t count = [array count];
	__block id current;

	if (count == 0)
		return nil;
	if (count == 1)