Given a binary tree aBinaryTree, returns its right child. Raises an error if the tree does not have a right child.
aBinaryTree
the tree to consider
the right child if possible
Given a binary tree
aBinaryTree
, returns its right child. Raises an error if the tree does not have a right child.