= private = protected
hash()
Return a hash code for this time object.
static VALUE time_hash(VALUE time) { struct time_object *tobj; long hash; GetTimeval(time, tobj); hash = tobj->ts.tv_sec ^ tobj->ts.tv_nsec; return LONG2FIX(hash); }