tuesday?()
Returns true if time represents Tuesday.
t = Time.local(1991, 2, 19) #=> 1991-02-19 00:00:00 -0600 p t.tuesday? #=> true
static VALUE time_tuesday(VALUE time) { wday_p(2); }