Method: Code::Object::Integer#code_bitwise_and

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

#code_bitwise_and(other) ⇒ Object



175
176
177
# File 'lib/code/object/integer.rb', line 175

def code_bitwise_and(other)
  Integer.new(raw & other.raw.to_i)
end