Method: Code::Object::Decimal#code_bitwise_xor

Defined in:
lib/code/object/decimal.rb

#code_bitwise_xor(other) ⇒ Object



157
158
159
# File 'lib/code/object/decimal.rb', line 157

def code_bitwise_xor(other)
  Integer.new(raw.to_i ^ other.raw.to_i)
end