Converts self to a floating-point number of seconds since the Unix epoch
346 347 348 349
# File 'lib/standard/facets/date.rb', line 346 def to_f days_since_unix_epoch = self - ::DateTime.civil(1970) (days_since_unix_epoch * 86_400).to_f end