(ReadContext context)
| 206 | } |
| 207 | |
| 208 | public override BFloat16 ReadData(ReadContext context) |
| 209 | { |
| 210 | return BFloat16.FromBits(context.Reader.ReadUInt16()); |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | public sealed class Float32Serializer : Serializer<float> |
nothing calls this directly
no test coverage detected