characterSetWithBitmapRepresentation static method

NSCharacterSet characterSetWithBitmapRepresentation(
  1. NSData data
)

characterSetWithBitmapRepresentation:

Implementation

static NSCharacterSet characterSetWithBitmapRepresentation(NSData data) {
  final $ret = _objc_msgSend_1sotr3r(
    _class_NSCharacterSet,
    _sel_characterSetWithBitmapRepresentation_,
    data.ref.pointer,
  );
  return NSCharacterSet.fromPointer($ret, retain: true, release: true);
}