Differences From Artifact [6a9e638b4e]:
- File
src/OFMutableSet_hashtable.m
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 1108) [annotate] [blame] [check-ins using]
To Artifact [b88d2a251a]:
- File src/OFMutableSet_hashtable.m — part of check-in [8823a4df67] at 2017-08-19 08:24:40 on branch trunk — Add -[OFMutableSet removeAllObjects] (user: js, size: 1169) [annotate] [blame] [check-ins using]
| ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | + + + + + |
forKey: object];
}
- (void)removeObject: (id)object
{
[_mapTable removeObjectForKey: object];
}
- (void)removeAllObjects
{
[_mapTable removeAllObjects];
}
- (void)makeImmutable
{
object_setClass(self, [OFSet_hashtable class]);
}
@end
|