264 265 266 267 268 269 270 271 272
# File 'lib/code/object/integer.rb', line 264 def code_minus(other) code_other = other.to_code if code_other.is_a?(Integer) Integer.new(raw - code_other.raw) else Decimal.new(raw - code_other.raw) end end