module Sequel::Postgres::RangeOpMethods
Public Instance Methods
pg_range()
click to toggle source
Wrap the receiver in an RangeOp
so you can easily use the PostgreSQL range functions and operators with it.
# File lib/sequel/extensions/pg_range_ops.rb 114 def pg_range 115 RangeOp.new(self) 116 end