Method: Code::Object::Integer#code_bitwise_xor

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

#code_bitwise_xor(other) ⇒ Object



169
170
171
# File 'lib/code/object/integer.rb', line 169

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