(ReadContext context)
| 585 | } |
| 586 | |
| 587 | public override ImmutableHashSet<T> ReadData(ReadContext context) |
| 588 | { |
| 589 | return ImmutableHashSet.CreateRange(CollectionCodec.ReadCollectionData(context.TypeResolver.GetSerializer<T>(), context)); |
| 590 | } |
| 591 | } |
| 592 | |
| 593 | public sealed class LinkedListSerializer<T> : Serializer<LinkedList<T>> |
nothing calls this directly
no test coverage detected