Methods
T
Instance Public methods
to_time()
# File activesupport/lib/active_support/core_ext/date_and_time/compatibility.rb, line 14
def to_time
  if preserve_timezone
    @_to_time_with_instance_offset ||= getlocal(utc_offset)
  else
    @_to_time_with_system_offset ||= getlocal
  end
end