nextDateAfterDate_matchingComponents_options_ method

NSDate? nextDateAfterDate_matchingComponents_options_(
  1. NSDate date,
  2. NSDateComponents comps,
  3. int options
)

Implementation

NSDate? nextDateAfterDate_matchingComponents_options_(
    NSDate date, NSDateComponents comps, int options) {
  final _ret = _lib._objc_msgSend_789(
      _id,
      _lib._sel_nextDateAfterDate_matchingComponents_options_1,
      date._id,
      comps._id,
      options);
  return _ret.address == 0
      ? null
      : NSDate._(_ret, _lib, retain: true, release: true);
}