MCPcopy Index your code
hub / github.com/go-git/go-git / WriteUint64

Function WriteUint64

utils/binary/write.go:36–38  ·  view source on GitHub ↗

WriteUint64 writes the binary representation of a uint64 into w, in BigEndian order

(w io.Writer, value uint64)

Source from the content-addressed store, hash-verified

34// WriteUint64 writes the binary representation of a uint64 into w, in BigEndian
35// order
36func 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

Callers 6

addOffset64Method · 0.92
encodeChunkHeadersMethod · 0.92
encodeCommitDataMethod · 0.92
encodeChunkHeadersMethod · 0.92
encodeCommitDataMethod · 0.92

Calls 1

WriteMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…