Overview
| Comment: | Add a note about -[OFDataArray cArray]. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
32660bf70f9a7f3307eddae27ac0eb71 |
| User & Date: | js on 2011-06-13 00:59:41 |
| Other Links: | manifest | tags |
Context
|
2011-06-13
| ||
| 02:30 | Add -[translateWithVector:] and -[scaleWithVector:] to OFFloatMatrix. (check-in: a07cf9ee16 user: js tags: trunk) | |
| 00:59 | Add a note about -[OFDataArray cArray]. (check-in: 32660bf70f user: js tags: trunk) | |
| 00:55 | Make the GNU runtime happy by not comparing isa directly. (check-in: 208e94917e user: js tags: trunk) | |
Changes
Modified src/OFDataArray.h from [6bb4b3ad3c] to [8f65cb712a].
| ︙ | ︙ | |||
134 135 136 137 138 139 140 141 142 143 144 145 146 147 | * * \return The size of each item in the OFDataArray in bytes */ - (size_t)itemSize; /** * \brief Returns all elements of the OFDataArray as a C array. * * \return All elements of the OFDataArray as a C array */ - (void*)cArray; /** * \brief Returns a specific item of the OFDataArray. | > > > | 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | * * \return The size of each item in the OFDataArray in bytes */ - (size_t)itemSize; /** * \brief Returns all elements of the OFDataArray as a C array. * * Modifying the returned array directly is allowed and will change the contents * of the data array. * * \return All elements of the OFDataArray as a C array */ - (void*)cArray; /** * \brief Returns a specific item of the OFDataArray. |
| ︙ | ︙ |