[Source]
# File rational.rb, line 333 def quo(other) Rational.new!(self,1) / other end
Alias for quo
# File rational.rb, line 338 def rpower (other) if other >= 0 self.power!(other) else Rational.new!(self,1)**other end end
Alias for rpower
[Validate]