DecodeMap iterates over the fields of the value being decoded, invoke the callback on each with field name, a Decoder for the field value, and a bool to indicate whether or not to use exact match for the field names. It will be called when MapLen returns true or decoding a struct. If the callback re
(func(string, Decoder, bool) bool)
| 355 | // be called when MapLen returns true or decoding a struct. If the callback |
| 356 | // returns false, DecodeMap should return immediately. |
| 357 | DecodeMap(func(string, Decoder, bool) bool) |
| 358 | |
| 359 | // AsInterface should decode the value into the Go value that best represents it. |
| 360 | AsInterface() (any, error) |
no outgoing calls
no test coverage detected