Differences From Artifact [e463fcbc2b]:
- File
src/OFArray.h
— part of check-in
[49859c2bcc]
at
2008-10-29 17:29:49
on branch trunk
— Add getMemForNItems:withSize: & resizeMem:toNItems:withSize: in OFObject
Additionally, interface for OFArray. (user: js, size: 622) [annotate] [blame] [check-ins using]
To Artifact [c4b4209f57]:
- File src/OFArray.h — part of check-in [5a21508a04] at 2008-11-01 18:38:34 on branch trunk — Only run tests if we're not cross-compiling. (user: js, size: 619) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
22 23 24 25 26 27 28 | - initWithItemSize: (size_t)is; - (size_t)size; - (void*)item: (size_t)item; - (void*)last; - add: (void*)item; - addNItems: (size_t)nitems | | | 22 23 24 25 26 27 28 29 30 31 | - initWithItemSize: (size_t)is; - (size_t)size; - (void*)item: (size_t)item; - (void*)last; - add: (void*)item; - addNItems: (size_t)nitems fromCArray: (void*)carray; - removeLastNItems: (size_t)nitems; @end |