method

extract_bounds

extract_bounds(value)
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/postgresql/oid/range.rb, line 62
          def extract_bounds(value)
            from, to = value[1..-2].split(',')
            {
              from:          (value[1] == ',' || from == '-infinity') ? @subtype.infinity(negative: true) : from,
              to:            (value[-2] == ',' || to == 'infinity') ? @subtype.infinity : to,
              exclude_start: (value[0] == '('),
              exclude_end:   (value[-1] == ')')
            }
          end