Method: Time#hour
- Defined in:
- time.c
#hour ⇒ Integer
Returns the integer hour of the day for self, in range (0..23):
t = Time.new(2000, 1, 2, 3, 4, 5, 6)
# => 2000-01-02 03:04:05 +000006
t.hour # => 3
Related: Time#year, Time#mon, Time#min.
4736 4737 4738 4739 4740 4741 4742 4743 4744 |
# File 'time.c', line 4736 static VALUE time_hour(VALUE time) { struct time_object *tobj; GetTimeval(time, tobj); MAKE_TM(time, tobj); return INT2FIX(tobj->vtm.hour); } |