Method: Date#succ

Defined in:
ext/date/date_core.c

#succObject #nextObject

Returns a date object denoting the following day.



5958
5959
5960
5961
5962
# File 'ext/date/date_core.c', line 5958

static VALUE
d_lite_next(VALUE self)
{
    return d_lite_next_day(0, (VALUE *)NULL, self);
}