Skip to content

Instantly share code, notes, and snippets.

@jonsterling
Created December 10, 2010 19:21
Show Gist options
  • Select an option

  • Save jonsterling/736656 to your computer and use it in GitHub Desktop.

Select an option

Save jonsterling/736656 to your computer and use it in GitHub Desktop.
code snippets for JSBag post
+ (id)bagWithCollection:(id <NSFastEnumeration>)enumerable;
- (id)copyWithZone:(NSZone *)zone {
return [[JSBag allocWithZone:zone] initWithCollection:self];
}
- (id)mutableCopyWithZone:(NSZone *)zone {
return [[JSMutableBag allocWithZone:zone] initWithCollection:self];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment