# File lib/couchrest/model/typecast.rb, line 150
        def extract_time(value)
          now = Time.now
          [:year, :month, :day, :hour, :min, :sec].map do |segment|
            typecast_to_numeric(value.fetch(segment, now.send(segment)), :to_i)
          end
        end