summaryrefslogtreecommitdiff
path: root/lib/rational.rb
blob: 87c5d3f1114437c6d05eb24b44cddbc984d636db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Fixnum

  alias quof fdiv

  alias power! **
  alias rpower **

end

class Bignum

  alias quof fdiv

  alias power! **
  alias rpower **

end