Method: Time#day

Defined in:
time.c

#dayFixnum #mdayFixnum

Returns the day of the month (1..n) for time.

t = Time.now   #=> 2007-11-19 08:27:03 -0600
t.day          #=> 19
t.mday         #=> 19

Overloads:



3940
3941
3942
3943
3944
3945
3946
3947
3948
# File 'time.c', line 3940

static VALUE
time_mday(VALUE time)
{
    struct time_object *tobj;

    GetTimeval(time, tobj);
    MAKE_TM(time, tobj);
    return INT2FIX(tobj->vtm.mday);
}