Method: Code::Object::Decimal#code_bitwise_or

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

#code_bitwise_or(other) ⇒ Object



153
154
155
# File 'lib/code/object/decimal.rb', line 153

def code_bitwise_or(other)
  Integer.new(raw.to_i | other.raw.to_i)
end