Get the block following `block` in the layout order.
(&self, block: Block)
| 349 | |
| 350 | /// Get the block following `block` in the layout order. |
| 351 | pub fn next_block(&self, block: Block) -> Option<Block> { |
| 352 | self.blocks[block].next.expand() |
| 353 | } |
| 354 | |
| 355 | /// Mark a block as "cold". |
| 356 | /// |
no test coverage detected