# File lib/tree/binarytree.rb, line 92
    def isLeftChild?
      return false if isRoot?
      self == parent.leftChild
    end