Method: Code::Object::Decimal#code_round
- Defined in:
- lib/code/object/decimal.rb
#code_round(n = nil) ⇒ Object
243 244 245 246 |
# File 'lib/code/object/decimal.rb', line 243 def code_round(n = nil) n ||= Integer.new(0) Decimal.new(raw.round(n.raw)) end |