Module Sequel::Postgres::ArrayOpMethods
In: lib/sequel/extensions/pg_array_ops.rb

Methods

pg_array  

Public Instance methods

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

[Source]

     # File lib/sequel/extensions/pg_array_ops.rb, line 277
277:       def pg_array
278:         ArrayOp.new(self)
279:       end

[Validate]