mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-03-30 17:43:26 +08:00
24 lines
308 B
Ruby
24 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
|