AddEmbeddedJSON adds an EmbeddedsJSON to the value pointed by v. It can be used to delay JSON decoding or precompute a JSON encoding.
(v *EmbeddedJSON)
| 70 | // AddEmbeddedJSON adds an EmbeddedsJSON to the value pointed by v. |
| 71 | // It can be used to delay JSON decoding or precompute a JSON encoding. |
| 72 | func (dec *Decoder) AddEmbeddedJSON(v *EmbeddedJSON) error { |
| 73 | return dec.EmbeddedJSON(v) |
| 74 | } |
| 75 | |
| 76 | // EmbeddedJSON adds an EmbeddedsJSON to the value pointed by v. |
| 77 | // It can be used to delay JSON decoding or precompute a JSON encoding. |
nothing calls this directly
no test coverage detected