| 197 | size_t height() const { return data_.height; } |
| 198 | |
| 199 | absl::Span<const Derived* const> children() const { |
| 200 | return absl::MakeConstSpan(data_.children); |
| 201 | } |
| 202 | |
| 203 | // Range over the descendants of this node (including self) using preorder |
| 204 | // semantics. Each node is visited immediately before all of its descendants. |
no outgoing calls