(ReadContext context)
| 537 | } |
| 538 | |
| 539 | public override List<T> ReadData(ReadContext context) |
| 540 | { |
| 541 | return CollectionCodec.ReadCollectionData(context.TypeResolver.GetSerializer<T>(), context); |
| 542 | } |
| 543 | } |
| 544 | |
| 545 | public sealed class SetSerializer<T> : Serializer<HashSet<T>> where T : notnull |
nothing calls this directly
no test coverage detected