Iterate over all blocks, regardless whether a block is actually inserted in the layout or not. Iterates in creation order, not layout order.
(&self)
| 79 | /// |
| 80 | /// Iterates in creation order, not layout order. |
| 81 | pub fn iter(&self) -> impl Iterator<Item = Block> { |
| 82 | self.0.keys() |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | impl Index<Block> for Blocks { |
no test coverage detected