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

Method Read

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

Source from the content-addressed store, hash-verified

1015}
1016
1017func (s int32Int32MapSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) {
1018 done := readMapRefAndType(ctx, refMode, readType, value)
1019 if done || ctx.HasError() {
1020 return
1021 }
1022 s.ReadData(ctx, value)
1023}
1024
1025func (s int32Int32MapSerializer) ReadWithTypeInfo(ctx *ReadContext, refMode RefMode, typeInfo *TypeInfo, value reflect.Value) {
1026 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