Module Sequel::Postgres::RangeOpMethods
In: lib/sequel/extensions/pg_range_ops.rb

Methods

pg_range  

Public Instance methods

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

[Source]

     # File lib/sequel/extensions/pg_range_ops.rb, line 111
111:       def pg_range
112:         RangeOp.new(self)
113:       end

[Validate]