Method: Arel::Math#^

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

#^(other) ⇒ Object



29
30
31
# File 'activerecord/lib/arel/math.rb', line 29

def ^(other)
  Arel::Nodes::Grouping.new(Arel::Nodes::BitwiseXor.new(self, other))
end