Method: Time#wday

Defined in:
lib/source/ruby.rb

#wdayObject

call-seq:

time.wday -> integer

Returns an integer representing the day of the week, 0..6, with Sunday == 0.

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


6641
6642
6643
# File 'lib/source/ruby.rb', line 6641

def wday
  `this._value.getDay()`
end