git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3555 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-01-11 17:28:51 +00:00
parent 01c8722c6e
commit 0a15c4a68b
5 changed files with 38 additions and 7 deletions

View file

@ -338,6 +338,20 @@ static Class NSMutableSet_concrete_class;
[o performSelector:aSelector];
}
- (void) makeObjectsPerformSelector: (SEL)aSelector
{
id o, e = [self objectEnumerator];
while ((o = [e nextObject]))
[o performSelector:aSelector];
}
- (void) makeObjectsPerformSelector: (SEL)aSelector withObject:argument
{
id o, e = [self objectEnumerator];
while ((o = [e nextObject]))
[o performSelector:aSelector withObject: argument];
}
- (void) makeObjectsPerform: (SEL)aSelector withObject:argument
{
id o, e = [self objectEnumerator];