Signbit reports whether f is negative or negative zero.
()
| 283 | |
| 284 | // Signbit reports whether f is negative or negative zero. |
| 285 | func (f Float16) Signbit() bool { |
| 286 | return (f & maskSign) != 0 |
| 287 | } |
| 288 | |
| 289 | // String returns the string representation of f. |
| 290 | func (f Float16) String() string { |
no outgoing calls