Writes a long to the stream. Parameters ---------- long_value: :class:`int` The long to write.
(self, long_value: int)
| 238 | self._write(enc) |
| 239 | |
| 240 | def write_long(self, long_value: int): |
| 241 | """ |
| 242 | Writes a long to the stream. |
| 243 | |
| 244 | Parameters |
| 245 | ---------- |
| 246 | long_value: :class:`int` |
| 247 | The long to write. |
| 248 | """ |
| 249 | enc = struct.pack('>Q', long_value) |
| 250 | self._write(enc) |
| 251 | |
| 252 | def write_nullable_utf(self, utf_string: Optional[str]): |
| 253 | """ |
no test coverage detected