github.com/yuin/goldmark/util.CopyOnWriteBuffer.buffer (field)
23 uses
github.com/yuin/goldmark/util (current package)
util.go#L18: buffer []byte
util.go#L25: buffer: buffer,
util.go#L34: b.buffer = make([]byte, 0, len(b.buffer)+20)
util.go#L37: b.buffer = append(b.buffer, value...)
util.go#L50: tmp := make([]byte, len(b.buffer), len(b.buffer)+20)
util.go#L51: copy(tmp, b.buffer)
util.go#L52: b.buffer = tmp
util.go#L55: b.buffer = append(b.buffer, value...)
util.go#L68: b.buffer = make([]byte, 0, len(b.buffer)+20)
util.go#L71: b.buffer = append(b.buffer, c)
util.go#L78: tmp := make([]byte, len(b.buffer), len(b.buffer)+20)
util.go#L79: copy(tmp, b.buffer)
util.go#L80: b.buffer = tmp
util.go#L83: b.buffer = append(b.buffer, c)
util.go#L88: return b.buffer
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |