method

parse_data

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.1.8) is shown here.

parse_data(string)
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/postgresql/array_parser.rb, line 26
          def parse_data(string)
            local_index = 0
            array = []
            while(local_index < string.length)
              case string[local_index]
              when BRACKET_OPEN
                local_index,array = parse_array_contents(array, string, local_index + 1)
              when BRACKET_CLOSE
                return array
              end
              local_index += 1
            end

            array
          end