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

[Validate]