(ReadContext context)
| 553 | } |
| 554 | |
| 555 | public override HashSet<T> ReadData(ReadContext context) |
| 556 | { |
| 557 | return [.. CollectionCodec.ReadCollectionData(context.TypeResolver.GetSerializer<T>(), context)]; |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | public sealed class SortedSetSerializer<T> : Serializer<SortedSet<T>> where T : notnull |
nothing calls this directly
no test coverage detected