Contents

CFDictionaryRemoveValue(_:_:)

Removes a key-value pair.

Declaration

func CFDictionaryRemoveValue(_ theDict: CFMutableDictionary!, _ key: UnsafeRawPointer!)

Parameters

  • theDict:

    The dictionary to modify.

  • key:

    The key of the value to remove from theDict. If a key which matches key is present in theDict, the key-value pair is removed from the dictionary, otherwise this function does nothing (“remove if present”).

See Also

Modifying a Dictionary