monday?()
Returns true if time represents Monday.
t = Time.local(2003, 8, 4) #=> 2003-08-04 00:00:00 -0500 p t.monday? #=> true
static VALUE time_monday(VALUE time) { wday_p(1); }