= private = protected
tv_usec()
Returns just the number of microseconds for time.
t = Time.now #=> 2007-11-19 08:03:26 -0600 "%10.6f" % t.to_f #=> "1195481006.775195" t.usec #=> 775195
static VALUE time_usec(VALUE time) { struct time_object *tobj; GetTimeval(time, tobj); return LONG2NUM(tobj->ts.tv_nsec/1000); }