module Sequel::Postgres::RangeOpMethods

  1. lib/sequel/extensions/pg_range_ops.rb
Parent: Postgres

Methods

Public Instance

  1. pg_range

Public Instance methods

pg_range ()

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

[show source]
# File lib/sequel/extensions/pg_range_ops.rb, line 110
def pg_range
  RangeOp.new(self)
end