Rebuild this cursor positioned at the bottom of `block`. This is intended to be used as a builder method: ``` # use cranelift_codegen::ir::{Function, Block, Inst}; # use cranelift_codegen::cursor::{Cursor, FuncCursor}; fn edit_func(func: &mut Function, block: Block) { let mut pos = FuncCursor::new(func).at_bottom(block); // Use `pos`... } ```
(mut self, block: ir::Block)
| 212 | /// } |
| 213 | /// ``` |
| 214 | fn at_bottom(mut self, block: ir::Block) -> Self |
| 215 | where |
| 216 | Self: Sized, |
| 217 | { |
| 218 | self.goto_bottom(block); |
| 219 | self |
| 220 | } |
| 221 | |
| 222 | /// Get the block corresponding to the current position. |
| 223 | fn current_block(&self) -> Option<ir::Block> { |