(ctx *WriteContext, value reflect.Value)
| 287 | } |
| 288 | |
| 289 | func (s encodedUint64Serializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 290 | switch s.typeID { |
| 291 | case UINT64: |
| 292 | ctx.buffer.WriteUint64(value.Uint()) |
| 293 | case TAGGED_UINT64: |
| 294 | ctx.buffer.WriteTaggedUint64(value.Uint()) |
| 295 | default: |
| 296 | ctx.buffer.WriteVarUint64(value.Uint()) |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | func (s encodedUint64Serializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 301 | _ = hasGenerics |
no test coverage detected