class BigDecimal

Public Instance Methods

__org_div__(other)
Alias for: div
div(other) click to toggle source
# File lib/ironruby.rb, line 31
def div(other)
  case other
    when BigDecimal then __org_div__(other)
    when Integer then __org_div__(BigDecimal.new(other.to_s))
    else to_f.div(other.to_f)
  end
end
Also aliased as: __org_div__