WriteUint64 writes the provided uint64 value to byte slice.
(v uint64)
| 85 | |
| 86 | // WriteUint64 writes the provided uint64 value to byte slice. |
| 87 | func WriteUint64(v uint64) (b []byte) { |
| 88 | b = make([]byte, 8) |
| 89 | NativeEndian.PutUint64(b, v) |
| 90 | return |
| 91 | } |
no outgoing calls
no test coverage detected