expressionForMinusSet static method

NSExpression expressionForMinusSet(
  1. NSExpression left, {
  2. required NSExpression with$,
})

expressionForMinusSet:with:

Implementation

static NSExpression expressionForMinusSet(NSExpression left, {required NSExpression with$}) {
objc.checkOsVersionInternal('NSExpression.expressionForMinusSet:with:', iOS: (false, (3, 0, 0)), macOS: (false, (10, 5, 0)));
  final _ret = _objc_msgSend_15qeuct(_class_NSExpression, _sel_expressionForMinusSet_with_, left.ref.pointer, with$.ref.pointer);
  return NSExpression.castFromPointer(_ret, retain: true, release: true);
}