(&mut self)
| 345 | // TODO: make this API different from the python and C++ implementations. |
| 346 | #[allow(clippy::should_implement_trait)] |
| 347 | pub fn next(&mut self) -> bool { |
| 348 | unsafe { BNLinearViewCursorNext(self.handle) } |
| 349 | } |
| 350 | |
| 351 | pub fn lines(&self) -> Array<LinearDisassemblyLine> { |
| 352 | let mut count: usize = 0; |
no outgoing calls