MCPcopy Create free account
hub / github.com/apache/fory / Read

Method Read

go/fory/map_primitive.go:982–988  ·  view source on GitHub ↗
(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value)

Source from the content-addressed store, hash-verified

980}
981
982func (s stringBoolMapSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) {
983 done := readMapRefAndType(ctx, refMode, readType, value)
984 if done || ctx.HasError() {
985 return
986 }
987 s.ReadData(ctx, value)
988}
989
990func (s stringBoolMapSerializer) ReadWithTypeInfo(ctx *ReadContext, refMode RefMode, typeInfo *TypeInfo, value reflect.Value) {
991 s.Read(ctx, refMode, false, false, value)

Callers 1

ReadWithTypeInfoMethod · 0.95

Calls 3

ReadDataMethod · 0.95
readMapRefAndTypeFunction · 0.85
HasErrorMethod · 0.45

Tested by

no test coverage detected