标签:content 说明 程序 程序员 buffer builder 包括 注释 app
// Write appends the contents of p to b‘s buffer.
// Write always returns len(p), nil.
func (b *Builder) Write(p []byte) (int, error) {
b.copyCheck()
b.buf = append(b.buf, p...)
return len(p), nil
}
标签:content 说明 程序 程序员 buffer builder 包括 注释 app
原文地址:https://www.cnblogs.com/2bjiujiu/p/14091764.html