Is `block` currently part of the layout?
(&self, block: Block)
| 219 | impl Layout { |
| 220 | /// Is `block` currently part of the layout? |
| 221 | pub fn is_block_inserted(&self, block: Block) -> bool { |
| 222 | Some(block) == self.first_block || self.blocks[block].prev.is_some() |
| 223 | } |
| 224 | |
| 225 | /// Insert `block` as the last block in the layout. |
| 226 | pub fn append_block(&mut self, block: Block) { |
no test coverage detected