(WriteContext context, in SortedSet<T> value, bool hasGenerics)
| 563 | public override SortedSet<T> DefaultValue => null!; |
| 564 | |
| 565 | public override void WriteData(WriteContext context, in SortedSet<T> value, bool hasGenerics) |
| 566 | { |
| 567 | SortedSet<T> safe = value ?? new SortedSet<T>(); |
| 568 | CollectionCodec.WriteCollectionData(safe, context.TypeResolver.GetSerializer<T>(), context, hasGenerics); |
| 569 | } |
| 570 | |
| 571 | public override SortedSet<T> ReadData(ReadContext context) |
| 572 | { |
nothing calls this directly
no test coverage detected