MCPcopy Create free account
hub / github.com/segmentio/encoding / RawValue

TypeAlias RawValue

json/token.go:319–319  ·  view source on GitHub ↗

RawValue represents a raw json value, it is intended to carry null, true, false, number, and string values only.

Source from the content-addressed store, hash-verified

317// RawValue represents a raw json value, it is intended to carry null, true,
318// false, number, and string values only.
319type RawValue []byte
320
321// String returns true if v contains a string value.
322func (v RawValue) String() bool { return len(v) != 0 && v[0] == '"' }

Callers 3

delimFunction · 0.70
keyFunction · 0.70
valueFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected