MCPcopy
hub / github.com/kopia/kopia / BeginObject

Method BeginObject

internal/contentlog/contentlog_json_writer.go:62–66  ·  view source on GitHub ↗

BeginObject starts an object.

()

Source from the content-addressed store, hash-verified

60
61// BeginObject starts an object.
62func (jw *JSONWriter) BeginObject() {
63 jw.buf = append(jw.buf, '{')
64 jw.separatorStack = append(jw.separatorStack, commaSeparator)
65 jw.separator = nil
66}
67
68// EndObject ends an object.
69func (jw *JSONWriter) EndObject() {

Calls

no outgoing calls