(WriteContext context, in Half value, bool hasGenerics)
| 183 | public override Half DefaultValue => default; |
| 184 | |
| 185 | public override void WriteData(WriteContext context, in Half value, bool hasGenerics) |
| 186 | { |
| 187 | _ = hasGenerics; |
| 188 | context.Writer.WriteUInt16(BitConverter.HalfToUInt16Bits(value)); |
| 189 | } |
| 190 | |
| 191 | public override Half ReadData(ReadContext context) |
| 192 | { |
nothing calls this directly
no test coverage detected