MCPcopy Index your code
hub / github.com/vmihailenco/msgpack / encodeByteSliceValue

Function encodeByteSliceValue

encode_slice.go:16–18  ·  view source on GitHub ↗
(e *Encoder, v reflect.Value)

Source from the content-addressed store, hash-verified

14}
15
16func encodeByteSliceValue(e *Encoder, v reflect.Value) error {
17 return e.EncodeBytes(v.Bytes())
18}
19
20func encodeByteArrayValue(e *Encoder, v reflect.Value) error {
21 if err := e.EncodeBytesLen(v.Len()); err != nil {

Callers

nothing calls this directly

Calls 1

EncodeBytesMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…