MCPcopy Index your code
hub / github.com/tinylib/msgp / WriteInt

Method WriteInt

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

WriteInt writes an int to the writer

(i int)

Source from the content-addressed store, hash-verified

414
415// WriteInt writes an int to the writer
416func (mw *Writer) WriteInt(i int) error { return mw.WriteInt64(int64(i)) }
417
418// WriteUint64 writes a uint64 to the writer
419func (mw *Writer) WriteUint64(u uint64) error {

Callers 10

TestReadNumberArray_IntFunction · 0.95
WriteIntfMethod · 0.95
EncodeMsgMethod · 0.80
EncodeMsgMethod · 0.80
EncodeMsgMethod · 0.80
EncodeMsgMethod · 0.80
EncodeMsgMethod · 0.80

Calls 1

WriteInt64Method · 0.95