9 lines
166 B
Go
9 lines
166 B
Go
package encoding
|
|
|
|
import "github.com/shamaton/msgpack/v2/def"
|
|
|
|
func (e *encoder) writeNil(offset int) int {
|
|
offset = e.setByte1Int(def.Nil, offset)
|
|
return offset
|
|
}
|