Method: Arel::Math#&

Defined in:
activerecord/lib/arel/math.rb

#&(other) ⇒ Object



21
22
23
# File 'activerecord/lib/arel/math.rb', line 21

def &(other)
  Arel::Nodes::Grouping.new(Arel::Nodes::BitwiseAnd.new(self, other))
end