Function CFCharacterSetCreateInvertedSet

Source
pub unsafe extern "C-unwind" fn CFCharacterSetCreateInvertedSet(
    alloc: Option<&CFAllocator>,
    the_set: Option<&CFCharacterSet>,
) -> Option<CFRetained<CFCharacterSet>>
Available on crate features CFBase and CFCharacterSet only.
Expand description

Creates a new immutable character set that is the invert of the specified character set.

Parameter alloc: The CFAllocator which should be used to allocate memory for the array and its storage for values. This parameter may be NULL in which case the current default CFAllocator is used. If this reference is not a valid CFAllocator, the behavior is undefined.

Parameter theSet: The CFCharacterSet which is to be inverted. If this parameter is not a valid CFCharacterSet, the behavior is undefined.

Returns: A reference to the new immutable CFCharacterSet.