Flowdock
method

cast

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: LegacyPoint
cast(value) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.