| 124 | } |
| 125 | |
| 126 | NodeIndex |
| 127 | NodeIndex::right() const |
| 128 | { |
| 129 | if (is_leaf()) { |
| 130 | return *this; |
| 131 | } |
| 132 | |
| 133 | return NodeIndex{ val ^ (uint32_t(0x03) << (level() - 1)) }; |
| 134 | } |
| 135 | |
| 136 | NodeIndex |
| 137 | NodeIndex::parent() const |
no outgoing calls
no test coverage detected