Skip to content

Instantly share code, notes, and snippets.

@owensd
Created June 5, 2014 04:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save owensd/d376a15c157de6401e69 to your computer and use it in GitHub Desktop.
Save owensd/d376a15c157de6401e69 to your computer and use it in GitHub Desktop.
- (void)testAppendInt
{
NSMutableArray *array = [[NSMutableArray alloc] init];
[self measureBlock:^{
for (int i = 0; i < 1000000; ++i) {
[array addObject:@(i)];
}
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment