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 114
114:       def pg_range
115:         RangeOp.new(self)
116:       end

[Validate]