(WriteContext context, in Queue<T> value, bool hasGenerics)
| 611 | public override Queue<T> DefaultValue => null!; |
| 612 | |
| 613 | public override void WriteData(WriteContext context, in Queue<T> value, bool hasGenerics) |
| 614 | { |
| 615 | Queue<T> safe = value ?? new Queue<T>(); |
| 616 | CollectionCodec.WriteCollectionData(safe, context.TypeResolver.GetSerializer<T>(), context, hasGenerics); |
| 617 | } |
| 618 | |
| 619 | public override Queue<T> ReadData(ReadContext context) |
| 620 | { |
nothing calls this directly
no test coverage detected