Differences From Artifact [f7e8e6c2e5]:
- File
src/OFMutableArray.m
— part of check-in
[008be86a16]
at
2012-03-12 11:54:22
on branch trunk
— OFArray: +[arrayWithCArray:length:] -> +[arrayWithObjects:count:].
This is required for the new array literals. (user: js, size: 6386) [annotate] [blame] [check-ins using]
To Artifact [ef22d34f56]:
- File src/OFMutableArray.m — part of check-in [a18e732a06] at 2012-03-12 12:05:22 on branch trunk — Make array literals work. (user: js, size: 6519) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
190 191 192 193 194 195 196 197 198 199 200 201 202 203 | - (void)replaceObjectAtIndex: (size_t)index withObject: (id)object { @throw [OFNotImplementedException exceptionWithClass: isa selector: _cmd]; } - (void)replaceObject: (id)oldObject withObject: (id)newObject { size_t i, count = [self count]; for (i = 0; i < count; i++) { | > > > > > > > | 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | - (void)replaceObjectAtIndex: (size_t)index withObject: (id)object { @throw [OFNotImplementedException exceptionWithClass: isa selector: _cmd]; } - (void)setObject: (id)object atIndexedSubscript: (size_t)index { [self replaceObjectAtIndex: index withObject: object]; } - (void)replaceObject: (id)oldObject withObject: (id)newObject { size_t i, count = [self count]; for (i = 0; i < count; i++) { |
︙ | ︙ |