+ (OBMutableDictionary *) dictionaryWithCapacity:(ULONG)capacity
Creates and returns a mutable dictionary with the given capacity.
- (void) addEntriesFromDictionary:(OBDictionary __obCovariantKOType *)dictionary
Adds the entries from another dictionary.
- (OBMutableDictionary *) initWithCapacity:(ULONG)capacity
Initializes a mutable dictionary with the given capacity.
- (void) removeAllObjects
Removes all entries from the dictionary.
- (void) removeObjectForKey:(obKeyType)key
Removes the entry for the specified key.
- (void) removeObjectsForKeys:(OBArray __obCovariantKeyType *)keys
Removes entries for the specified keys.
- (void) setDictionary:(OBDictionary __obCovariantKOType *)dictionary
Replaces the contents of the dictionary with another dictionary.
- (void) setObject:(id)object forKey:(obKeyType)key
Sets an object for the specified key.