wednesday?()
Returns true if time represents Wednesday.
t = Time.local(1993, 2, 24) #=> 1993-02-24 00:00:00 -0600 p t.wednesday? #=> true
static VALUE time_wednesday(VALUE time) { wday_p(3); }