Returns the day of the month (1-31).
Date.new(2001,2,3).mday #=> 3
Overloads:
Returns:
5147 5148 5149 5150 5151 5152
# File 'ext/date/date_core.c', line 5147 static VALUE d_lite_mday(VALUE self) { get_d1(self); return INT2FIX(m_mday(dat)); }