Method: Code::Object::Boolean#code_bitwise_and

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

#code_bitwise_and(other) ⇒ Object



30
31
32
33
34
# File 'lib/code/object/boolean.rb', line 30

def code_bitwise_and(other)
  code_other = other.to_code

  Boolean.new(raw & code_other.raw)
end