WriteUint64 writes the binary representation of a uint64 into w, in BigEndian order
(w io.Writer, value uint64)
| 34 | // WriteUint64 writes the binary representation of a uint64 into w, in BigEndian |
| 35 | // order |
| 36 | func WriteUint64(w io.Writer, value uint64) error { |
| 37 | return binary.Write(w, binary.BigEndian, value) |
| 38 | } |
| 39 | |
| 40 | // WriteUint32 writes the binary representation of a uint32 into w, in BigEndian |
| 41 | // order |
no test coverage detected
searching dependent graphs…