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