Right (the Get method)

Returns a pointer to the right node.

CRedBlackTreeNode<T>* Right();

Return Value

Returns a pointer to the right node.

Right (the Set method)

Sets a pointer to the right node.

void Right(
   CRedBlackTreeNode<T>*  node     // a pointer to the right node
   );

Parameters

*node

[in]  A pointer to the right node.