MCPcopy Create free account
hub / github.com/aws/smithy-go / Array

Struct Array

encoding/json/array.go:8–12  ·  view source on GitHub ↗

Array represents the encoding of a JSON Array

Source from the content-addressed store, hash-verified

6
7// Array represents the encoding of a JSON Array
8type Array struct {
9 w *bytes.Buffer
10 writeComma bool
11 scratch *[]byte
12}
13
14func newArray(w *bytes.Buffer, scratch *[]byte) *Array {
15 w.WriteRune(leftBracket)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected