MCPcopy Index your code
hub / github.com/vmihailenco/msgpack / decodeInterfaceCond

Method decodeInterfaceCond

decode.go:323–328  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

321}
322
323func (d *Decoder) decodeInterfaceCond() (interface{}, error) {
324 if d.flags&looseInterfaceDecodingFlag != 0 {
325 return d.DecodeInterfaceLoose()
326 }
327 return d.DecodeInterface()
328}
329
330func (d *Decoder) DecodeValue(v reflect.Value) error {
331 decode := getDecoder(v.Type())

Callers 6

decodeSliceMethod · 0.95
interfaceValueMethod · 0.95
DecodeMapMethod · 0.95
DecodeUntypedMapMethod · 0.95
DecodeTypedMapMethod · 0.95
queryMethod · 0.95

Calls 2

DecodeInterfaceLooseMethod · 0.95
DecodeInterfaceMethod · 0.95

Tested by

no test coverage detected