# File lib/tree/binarytree.rb, line 98
    def isRightChild?
      return false if isRoot?
      self == parent.rightChild
    end