Returns the day of the month (1-31).
Date.new(2001,2,3).mday #=> 3
Overloads:
Returns:
4942 4943 4944 4945 4946 4947
# File 'date_core.c', line 4942 static VALUE d_lite_mday(VALUE self) { get_d1(self); return INT2FIX(m_mday(dat)); }