This method returns the smallest element of a BST.
BST
smallest = aBST$minimum()
minimum returns the smallest element of the BST in question, or NULL if the BST is empty.
minimum
NULL
John Hughes