MCPcopy
hub / github.com/google/go-jsonnet / valueStringTree

Struct valueStringTree

value.go:120–124  ·  view source on GitHub ↗

Indirect representation of long strings. It consists of two parts, left and right, concatenation of which is the whole string.

Source from the content-addressed store, hash-verified

118// Indirect representation of long strings.
119// It consists of two parts, left and right, concatenation of which is the whole string.
120type valueStringTree struct {
121 valueBase
122 left, right valueString
123 len int
124}
125
126func buildFullString(s valueString, buf *[]rune) {
127 switch s := s.(type) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected