The lowest (smallest) virtual address contained in a function.
(self)
| 576 | |
| 577 | @property |
| 578 | def lowest_address(self) -> int: |
| 579 | """The lowest (smallest) virtual address contained in a function.""" |
| 580 | return core.BNGetFunctionLowestAddress(self.handle) |
| 581 | |
| 582 | @property |
| 583 | def address_ranges(self) -> List['variable.AddressRange']: |
no outgoing calls
no test coverage detected