Method: Time#mday

Defined in:
lib/source/ruby.rb

#mdayObject

call-seq:

time.day  -> integer
time.mday -> integer

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

t = Time.now    #=> Tue Sep 23 2008 22:10:22 GMT-0400 (EDT)
t.mday          #=> 23


6448
6449
6450
# File 'lib/source/ruby.rb', line 6448

def mday
  `this._value.getDate()`
end