module ActiveRecord::Blockwhere::ArelNodeOperations

Public Instance Methods

!() click to toggle source
# File lib/active_record/blockwhere/arel_node_operations.rb, line 13
def !
  self.not
end
&(other) click to toggle source
# File lib/active_record/blockwhere/arel_node_operations.rb, line 5
def &(other)
  self.and(other)
end
empty?() click to toggle source
# File lib/active_record/blockwhere/arel_node_operations.rb, line 17
def empty?
  false
end
|(other) click to toggle source
# File lib/active_record/blockwhere/arel_node_operations.rb, line 9
def |(other)
  self.or(other)
end