# File lib/rational.rb, line 541 def rpower (other) if other >= 0 self.power!(other) else Rational.new!(self, 1)**other end end