| 396 | |
| 397 | |
| 398 | Block IBlockInputStream::getExtremes() |
| 399 | { |
| 400 | if (extremes) |
| 401 | return extremes; |
| 402 | |
| 403 | Block res; |
| 404 | forEachChild([&] (IBlockInputStream & child) |
| 405 | { |
| 406 | res = child.getExtremes(); |
| 407 | return bool(res); |
| 408 | }); |
| 409 | return res; |
| 410 | } |
| 411 | |
| 412 | |
| 413 | String IBlockInputStream::getTreeID() const |
no outgoing calls
no test coverage detected