Sha256: da68f858b714e9aaa132afe4ffc475a3265d9a9f90e6e760fcf4370995a7fec8

Contents?: true

Size: 238 Bytes

Versions: 5

Compression:

Stored size: 238 Bytes

Contents

require 'arel/predications'

module Arel
  module Predications
    def contained_within(other)
      Nodes::ContainedWithin.new self, other
    end

    def array_overlap(other)
      Nodes::ArrayOverlap.new self, other
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
postgres_ext-0.1.0 lib/postgres_ext/arel/predications.rb
postgres_ext-0.0.10 lib/postgres_ext/arel/predications.rb
postgres_ext-0.0.9 lib/postgres_ext/arel/predications.rb
postgres_ext-0.0.8 lib/postgres_ext/arel/predications.rb
postgres_ext-0.0.7 lib/postgres_ext/arel/predications.rb