CFCharacterSetCreateInvertedSet(_:_:)
Creates a new immutable character set that is the invert of the specified character set.
Declaration
func CFCharacterSetCreateInvertedSet(_ alloc: CFAllocator!, _ theSet: CFCharacterSet!) -> CFCharacterSet!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 from which to create an inverted set.
Return Value
A new character set that is the invert of theSet. Ownership follows the The Create Rule.