CFCharacterSetCreateMutableCopy(_:_:)
Creates a new mutable character set with the values from another character set.
Declaration
func CFCharacterSetCreateMutableCopy(_ alloc: CFAllocator!, _ theSet: CFCharacterSet!) -> CFMutableCharacterSet!Parameters
- alloc:
The allocator to use to allocate memory for the new object. Pass
NULLor kCFAllocatorDefault to use the current default allocator. - theSet:
The character set to copy.
Return Value
A new mutable character set containing the same characters as theSet. Ownership follows the The Create Rule.