String returns the string representation of f.
()
| 288 | |
| 289 | // String returns the string representation of f. |
| 290 | func (f Float16) String() string { |
| 291 | return fmt.Sprintf("%g", f.Float32()) |
| 292 | } |
| 293 | |
| 294 | // Arithmetic operations (promoted to float32) |
| 295 |