Getter/setter for whether this is a leaf node or not. This value doesn't change after the node is created.
| 479 | // Getter/setter for whether this is a leaf node or not. This value doesn't |
| 480 | // change after the node is created. |
| 481 | bool leaf() const { return GetField<&base_fields::max_count>() != kInternalNodeMaxCount; } |
| 482 | |
| 483 | // Getter for the position of this node in its parent. |
| 484 | field_type position() const { return GetField<&base_fields::position>(); } |
no outgoing calls
no test coverage detected