ObjFW  Diff

Differences From Artifact [c8ae639320]:

To Artifact [74b613ec1f]:

  • File src/OFArray.h — part of check-in [a29d403286] at 2009-05-23 16:50:44 on branch trunk — A few renames in OFArray, OFDataArray and OFDictionary.

    OFArray:
    * Rename - object: to - objectAtIndex:.

    OFDataArray:
    * Rename - item: to - itemAtIndex:.

    OFDictionary:
    * Rename - get: to - objectForKey:.
    * Rename - set:to: to - setObject:forKey:.
    * Rename - remove: to - removeObjectForKey:. (user: js, size: 2419) [annotate] [blame] [check-ins using]


91
92
93
94
95
96
97
98
99
100
101
102
103
104
105

/**
 * Returns a specific object of the OFDataArray.
 *
 * \param index The number of the object to return
 * \return The specified object of the OFArray
 */
- (id)object: (size_t)index;

/**
 * \return The last object of the OFDataArray
 */
- (id)last;

/**







|







91
92
93
94
95
96
97
98
99
100
101
102
103
104
105

/**
 * Returns a specific object of the OFDataArray.
 *
 * \param index The number of the object to return
 * \return The specified object of the OFArray
 */
- (id)objectAtIndex: (size_t)index;

/**
 * \return The last object of the OFDataArray
 */
- (id)last;

/**