| 141 | this->Index = this->GetDimension() | (left << 2); |
| 142 | } |
| 143 | bool IsNode() const |
| 144 | { |
| 145 | return (this->Index & 3) != 3; // For a leaf 2 LSBs in index is 3 |
| 146 | } |
| 147 | T GetLeftChildIndex() const { return (this->Index >> 2); } |
| 148 | T GetRightChildIndex() const |
| 149 | { |
no outgoing calls
no test coverage detected