(WriteContext context, in T[] value, bool hasGenerics)
| 510 | public override T[] DefaultValue => null!; |
| 511 | |
| 512 | public override void WriteData(WriteContext context, in T[] value, bool hasGenerics) |
| 513 | { |
| 514 | T[] safe = value ?? []; |
| 515 | CollectionCodec.WriteCollectionData( |
| 516 | safe, |
| 517 | context.TypeResolver.GetSerializer<T>(), |
| 518 | context, |
| 519 | hasGenerics); |
| 520 | } |
| 521 | |
| 522 | public override T[] ReadData(ReadContext context) |
| 523 | { |
nothing calls this directly
no test coverage detected