Guest User

Untitled

a guest
Jul 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #[inline]
  2. fn write_u64<T: ByteOrder>(&mut self, n: u64) -> Result<()> {
  3. let mut buf = [0; 8];
  4. T::write_u64(&mut buf, n);
  5. self.write_all(&buf)
  6. }
Add Comment
Please, Sign In to add comment