class ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Cidr

Public Instance Methods

type_cast(value) click to toggle source
# File lib/arjdbc/postgresql/base/oid.rb, line 252
def type_cast(value)
  return if value.nil?

  ConnectionAdapters::PostgreSQLColumn.string_to_cidr value
end