Concat implements the JSON interface.
(other JSON)
| 663 | |
| 664 | // Concat implements the JSON interface. |
| 665 | func (j *jsonEncoded) Concat(other JSON) (JSON, error) { |
| 666 | decoded, err := j.shallowDecode() |
| 667 | if err != nil { |
| 668 | return nil, err |
| 669 | } |
| 670 | return decoded.Concat(other) |
| 671 | } |
| 672 | |
| 673 | // RemoveString implements the JSON interface. |
| 674 | func (j *jsonEncoded) RemoveString(s string) (JSON, bool, error) { |
nothing calls this directly
no test coverage detected