Contents

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 NULL or 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.

See Also

Creating Character Sets