1. The document describes operations on red-black trees, which are self-balancing binary search trees. It includes functions for inserting and deleting nodes from the tree while maintaining the red-black properties.
2. Functions are provided for getting a new node, performing basic insertion into the binary search tree, and then fixing any violations of the red-black properties during insertion.
3. Similarly for deletion, a function searches for a node to delete, removes it from the tree, and then fixes any red-black property violations caused by the deletion.