Returns true if time represents Wednesday.
true
t = Time.local(1993, 2, 24) #=> 1993-02-24 00:00:00 -0600 t.wednesday? #=> true
Returns:
4639 4640 4641 4642 4643
# File 'time.c', line 4639 static VALUE time_wednesday(VALUE time) { wday_p(3); }