(WriteContext context, in BFloat16 value, bool hasGenerics)
| 200 | public override BFloat16 DefaultValue => default; |
| 201 | |
| 202 | public override void WriteData(WriteContext context, in BFloat16 value, bool hasGenerics) |
| 203 | { |
| 204 | _ = hasGenerics; |
| 205 | context.Writer.WriteUInt16(value.ToBits()); |
| 206 | } |
| 207 | |
| 208 | public override BFloat16 ReadData(ReadContext context) |
| 209 | { |
nothing calls this directly
no test coverage detected