characterSetWithCharactersInString static method

NSCharacterSet characterSetWithCharactersInString(
  1. NSString aString
)

characterSetWithCharactersInString:

Implementation

static NSCharacterSet characterSetWithCharactersInString(NSString aString) {
  final $ret = _objc_msgSend_1sotr3r(
    _class_NSCharacterSet,
    _sel_characterSetWithCharactersInString_,
    aString.ref.pointer,
  );
  return NSCharacterSet.fromPointer($ret, retain: true, release: true);
}