MCPcopy
hub / github.com/tinylib/msgp / WriteUint

Method WriteUint

msgp/write.go:447–447  ·  view source on GitHub ↗

WriteUint writes a uint to the writer

(u uint)

Source from the content-addressed store, hash-verified

445
446// WriteUint writes a uint to the writer
447func (mw *Writer) WriteUint(u uint) error { return mw.WriteUint64(uint64(u)) }
448
449// WriteBytes writes binary as 'bin' to the writer
450func (mw *Writer) WriteBytes(b []byte) error {

Callers 7

BenchmarkCopyToJSONFunction · 0.95
WriteIntfMethod · 0.95
BenchmarkUnmarshalAsJSONFunction · 0.95
EncodeMsgMethod · 0.80
EncodeMsgMethod · 0.80

Calls 1

WriteUint64Method · 0.95