Differences From Artifact [12bb9cf14f]:
- File
src/OFDictionary.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: 3915) [annotate] [blame] [check-ins using]
To Artifact [c2a0d12c52]:
- File
src/OFDictionary.h
— part of check-in
[41974cf38d]
at
2009-06-09 20:10:52
on branch trunk
— Move documentation of mutating methods.
Mutating methods are now documented in the mutable class. (user: js, size: 3541) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
132 133 134 135 136 137 138 | /** * \param key The key whose object should be returned * \return The object for the given key or nil if the key was not found */ - (id)objectForKey: (OFObject*)key; | < < < < < < < < < < < < < < < < < < | 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | /** * \param key The key whose object should be returned * \return The object for the given key or nil if the key was not found */ - (id)objectForKey: (OFObject*)key; - setObject: (OFObject*)obj forKey: (OFObject <OFCopying>*)key; - removeObjectForKey: (OFObject*)key; - changeHashSize: (int)hashsize; @end #import "OFIterator.h" #import "OFMutableDictionary.h" |