Differences From Artifact [37a3e697c0]:
- File
src/OFArray.m
— part of check-in
[41974cf38d]
at
2009-06-09 20:10:52
on branch trunk
— Move documentation of mutating methods.
Mutating methods are now documented in the mutable class. (user: js, size: 3457) [annotate] [blame] [check-ins using]
To Artifact [88c47b37c1]:
- File
src/OFArray.m
— part of check-in
[67bb344ba6]
at
2009-06-30 12:07:21
on branch trunk
— A few renames in OFObject, see details.
* +[conformsTo:] to +[conformsToProtocol:].
* -[isKindOf:] to -[isKindOfClass:].
* -[respondsTo:] to -[respondsToSelector:].
* -[conformsTo:] to -[conformsToProtocol:].
* -[methodFor:] to -[methodForSelector:]. (user: js, size: 3462) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
177 178 179 180 181 182 183 |
}
- (BOOL)isEqual: (id)obj
{
OFObject **objs, **objs2;
size_t i, len, len2;
| | | 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
}
- (BOOL)isEqual: (id)obj
{
OFObject **objs, **objs2;
size_t i, len, len2;
if (![obj isKindOfClass: [OFArray class]])
return NO;
len = [array count];
len2 = [obj count];
if (len != len2)
return NO;
|
| ︙ | ︙ |