pub unsafe extern "C" fn CFCharacterSetIsCharacterMember(
theSet: CFCharacterSetRef,
theChar: UniChar,
) -> BooleanExpand description
@function CFCharacterSetIsCharacterMember Reports whether or not the Unicode character is in the character set. @param theSet The character set to be searched. If this parameter is not a valid CFCharacterSet, the behavior is undefined. @param theChar The Unicode character for which to test against the character set. Note that this function takes 16-bit Unicode character value; hence, it does not support access to the non-BMP planes. @result true, if the value is in the character set, otherwise false.