``seek`` update internal offset to ``offset``. :param int offset: offset to set the internal offset to :rtype: None :Example: >>> hex(bw.offset) '0x100000008L' >>> bw.seek(0x100000000) >>> hex(bw.offset) '0x100000000L' >>>
(self, offset: int)
| 10756 | return self.write(struct.pack(">Q", value), except_on_relocation=except_on_relocation) |
| 10757 | |
| 10758 | def seek(self, offset: int) -> None: |
| 10759 | """ |
| 10760 | ``seek`` update internal offset to ``offset``. |
| 10761 | |
| 10762 | :param int offset: offset to set the internal offset to |
| 10763 | :rtype: None |
| 10764 | :Example: |
| 10765 | |
| 10766 | >>> hex(bw.offset) |
| 10767 | '0x100000008L' |
| 10768 | >>> bw.seek(0x100000000) |
| 10769 | >>> hex(bw.offset) |
| 10770 | '0x100000000L' |
| 10771 | >>> |
| 10772 | """ |
| 10773 | core.BNSeekBinaryWriter(self._handle, offset) |
| 10774 | |
| 10775 | def seek_relative(self, offset: int) -> None: |
| 10776 | """ |
no outgoing calls
no test coverage detected