exchangeObjectAtIndex method

void exchangeObjectAtIndex(
  1. int idx1, {
  2. required int withObjectAtIndex,
})

exchangeObjectAtIndex:withObjectAtIndex:

Implementation

void exchangeObjectAtIndex(int idx1, {required int withObjectAtIndex}) {
  objc.checkOsVersionInternal(
    'NSMutableOrderedSet.exchangeObjectAtIndex:withObjectAtIndex:',
    iOS: (false, (5, 0, 0)),
    macOS: (false, (10, 7, 0)),
  );
  _objc_msgSend_bfp043(
    object$.ref.pointer,
    _sel_exchangeObjectAtIndex_withObjectAtIndex_,
    idx1,
    withObjectAtIndex,
  );
}