NSDictionary(AWSMTLManipulationAdditions)
@interface NSDictionary (AWSMTLManipulationAdditions)
// Merges the keys and values from the given dictionary into the receiver. If
// both the receiver and `dictionary` have a given key, the value from
// `dictionary` is used.
//
// Returns a new dictionary containing the entries of the receiver combined with
// those of `dictionary`.
- (NSDictionary *)awsmtl_dictionaryByAddingEntriesFromDictionary:(NSDictionary *)dictionary;
// Creates a new dictionary with all the entries for the given keys removed from
// the receiver.
- (NSDictionary *)awsmtl_dictionaryByRemovingEntriesWithKeys:(NSSet *)keys;
@end
Undocumented
-
Undocumented
Declaration
Objective-C
- (NSDictionary *)awsmtl_dictionaryByAddingEntriesFromDictionary:(NSDictionary *)dictionary;
Swift
func awsmtl_dictionaryByAddingEntries(from dictionary: [AnyHashable : Any]!) -> [AnyHashable : Any]!
-
Undocumented
Declaration
Objective-C
- (NSDictionary *)awsmtl_dictionaryByRemovingEntriesWithKeys:(NSSet *)keys;
Swift
func awsmtl_dictionaryByRemovingEntries(withKeys keys: Set<AnyHashable>!) -> [AnyHashable : Any]!