(ReadContext context)
| 569 | } |
| 570 | |
| 571 | public override SortedSet<T> ReadData(ReadContext context) |
| 572 | { |
| 573 | return [.. CollectionCodec.ReadCollectionData(context.TypeResolver.GetSerializer<T>(), context)]; |
| 574 | } |
| 575 | } |
| 576 | |
| 577 | public sealed class ImmutableHashSetSerializer<T> : Serializer<ImmutableHashSet<T>> where T : notnull |
nothing calls this directly
no test coverage detected