class Tree::BinaryTreeNode

Provides a Binary tree implementation. This node allows only two child nodes (left and right child). It also provides direct access to the left or right child, including assignment to the same.

This inherits from the {Tree::TreeNode} class.

@author Anupam Sengupta