49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/**
* \return The size of each item in the OFDataArray in bytes
*/
- (size_t)itemsize;
/**
* \return All elements of the OFDataArray
*/
- (void*)data;
/**
* Compares the OFDataArray to another object.
*
* \param obj An object to compare with
* \return An integer which is the result of the comparison, see for example
* strcmp
|
|
|
|
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/**
* \return The size of each item in the OFDataArray in bytes
*/
- (size_t)itemsize;
/**
* \return All elements of the OFDataArray as a C array
*/
- (void*)cArray;
/**
* Compares the OFDataArray to another object.
*
* \param obj An object to compare with
* \return An integer which is the result of the comparison, see for example
* strcmp
|