module Sequel::Postgres::InetOpMethods

Public Instance Methods

pg_inet() click to toggle source

Wrap the receiver in an InetOp so you can easily use the PostgreSQL inet functions and operators with it.

    # File lib/sequel/extensions/pg_inet_ops.rb
163 def pg_inet
164   InetOp.new(self)
165 end