# File lib/aws/record/attributes/sortable_integer.rb, line 71
      def self.offset_and_precision options, &block

        min = options[:range].first
        max = options[:range].last

        offset = min < 0 ? min * -1 : 0
        precision = (max + offset).to_s.length

        yield(offset, precision)

      end