(&self, block: BlockIndex)
| 1544 | } |
| 1545 | |
| 1546 | fn block_succs(&self, block: BlockIndex) -> &[BlockIndex] { |
| 1547 | let range = self.block_succ_range.get(block.index()); |
| 1548 | &self.block_succs[range] |
| 1549 | } |
| 1550 | |
| 1551 | fn block_preds(&self, block: BlockIndex) -> &[BlockIndex] { |
| 1552 | let range = self.block_pred_range.get(block.index()); |