WriteUint32 writes the binary representation of a uint32 into w, in BigEndian order
(w io.Writer, value uint32)
| 40 | // WriteUint32 writes the binary representation of a uint32 into w, in BigEndian |
| 41 | // order |
| 42 | func WriteUint32(w io.Writer, value uint32) error { |
| 43 | return binary.Write(w, binary.BigEndian, value) |
| 44 | } |
| 45 | |
| 46 | // WriteUint16 writes the binary representation of a uint16 into w, in BigEndian |
| 47 | // order |
searching dependent graphs…