Returns `true` if the given block reference is valid.
(&self, block: Block)
| 236 | |
| 237 | /// Returns `true` if the given block reference is valid. |
| 238 | pub fn block_is_valid(&self, block: Block) -> bool { |
| 239 | self.blocks.is_valid(block) |
| 240 | } |
| 241 | |
| 242 | /// Make a BlockCall, bundling together the block and its arguments. |
| 243 | pub fn block_call<'a>( |
no test coverage detected