(WriteContext context, in LinkedList<T> value, bool hasGenerics)
| 595 | public override LinkedList<T> DefaultValue => null!; |
| 596 | |
| 597 | public override void WriteData(WriteContext context, in LinkedList<T> value, bool hasGenerics) |
| 598 | { |
| 599 | LinkedList<T> safe = value ?? new LinkedList<T>(); |
| 600 | CollectionCodec.WriteCollectionData(safe, context.TypeResolver.GetSerializer<T>(), context, hasGenerics); |
| 601 | } |
| 602 | |
| 603 | public override LinkedList<T> ReadData(ReadContext context) |
| 604 | { |
nothing calls this directly
no test coverage detected