Method: Date#next

Defined in:
ext/date_ext/date_ext.c

#nextDate Also known as: succ

Returns the Date after the receiver’s date:

Date.civil(2009, 1, 2).next
# => #<Date 2009-01-03>

Returns:



2445
2446
2447
# File 'ext/date_ext/date_ext.c', line 2445

static VALUE rhrd_next(VALUE self) {
   return rhrd__add_days(self, 1);
}