MCPcopy Create free account
hub / github.com/auxten/postgresql-parser / Concat

Method Concat

pkg/util/json/encoded.go:651–657  ·  view source on GitHub ↗

Concat implements the JSON interface.

(other JSON)

Source from the content-addressed store, hash-verified

649
650// Concat implements the JSON interface.
651func (j *jsonEncoded) Concat(other JSON) (JSON, error) {
652 decoded, err := j.shallowDecode()
653 if err != nil {
654 return nil, err
655 }
656 return decoded.Concat(other)
657}
658
659// RemoveString implements the JSON interface.
660func (j *jsonEncoded) RemoveString(s string) (JSON, bool, error) {

Callers

nothing calls this directly

Calls 2

shallowDecodeMethod · 0.95
ConcatMethod · 0.65

Tested by

no test coverage detected