method
cast
v8.1.1 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::PostgreSQL::OID::LegacyPoint
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