mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
399dace5ed
[ruby-core:25740] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25067 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
23 lines
308 B
Ruby
23 lines
308 B
Ruby
# :enddoc:
|
|
|
|
warn('lib/rational.rb is deprecated') if $VERBOSE
|
|
|
|
class Fixnum
|
|
|
|
alias quof fdiv
|
|
alias rdiv quo
|
|
|
|
alias power! ** unless method_defined? :power!
|
|
alias rpower **
|
|
|
|
end
|
|
|
|
class Bignum
|
|
|
|
alias quof fdiv
|
|
alias rdiv quo
|
|
|
|
alias power! ** unless method_defined? :power!
|
|
alias rpower **
|
|
|
|
end
|