cast(value)
public

No documentation available.

# File activerecord/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb, line 14
          def cast(value)
            case value
            when ::String
              if value.start_with?("(") && value.end_with?(")")
                value = value[1...-1]
              end
              cast(value.split(","))
            when ::Array
              value.map { |v| Float(v) }
            else
              value
            end
          end