hour()
public
Returns the hour of the day (0..23) for time.
t = Time .now #=> 2007年11月19日 08:26:20 -0600
t.hour #=> 8
static VALUE
time_hour(VALUE time)
{
struct time_object *tobj;
GetTimeval(time, tobj);
MAKE_TM(time, tobj);
return INT2FIX(tobj->vtm.hour);
}