summaryrefslogtreecommitdiff
path: root/lib/mathn.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-01-23 06:22:50 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-01-23 06:22:50 +0000
commita9ec8adff324bffa6f3cd18620b674e5737ce0bc (patch)
treefa8ac7f3dd7ae1d12349e43bc3f4c47510fc907a /lib/mathn.rb
parent259ba31d8a9bde12f412ba500d80180022d7416e (diff)
* lib/rational.rb: modified to support "quo".
* numeric.c (num_quo): should return most exact quotient value, i.e. float by default, rational if available. * numeric.c (num_div): "div" should return x.divmod(x)[0]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3399 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mathn.rb')
-rw-r--r--lib/mathn.rb11
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/mathn.rb b/lib/mathn.rb
index f3f7a95a48..cd4c6ef9e9 100644
--- a/lib/mathn.rb
+++ b/lib/mathn.rb
@@ -106,18 +106,11 @@ class Prime
end
class Fixnum
- alias divmod! divmod
- alias / rdiv
- def divmod(other)
- a = self.div(other)
- b = self % other
- return a,b
- end
+ alias / quo
end
class Bignum
- alias divmod! divmod
- alias / rdiv
+ alias / quo
end
class Rational