// NewLenWriter returns a LenWriter that reserves the // bytes buf so they can store the length later. func NewLenWriter(buf *bytes2.ChunkedWriter) LenWriter { off := buf.Len() b := buf.Reserve(WORD32) return LenWriter{buf, off, b} }