class Time

Public Instance Methods

everything_became_f?() click to toggle source
# File lib/everything_becomes_f/core_ext/time.rb, line 2
def everything_became_f?
  to_i.everything_became_f?
end
everything_becomes_f() click to toggle source
# File lib/everything_becomes_f/core_ext/time.rb, line 6
def everything_becomes_f
  return self if everything_became_f?

  Time.at(to_i.everything_becomes_f)
end