The number of nodes in the tree rooted at this node (including self).
| 191 | |
| 192 | // The number of nodes in the tree rooted at this node (including self). |
| 193 | size_t tree_size() const { return data_.tree_size; } |
| 194 | |
| 195 | // The height of this node in the tree (the number of descendants including |
| 196 | // self on the longest path). |
no outgoing calls