Returns a new Half constructed from the IEEE 754 binary16.
| 124 | |
| 125 | /// Returns a new Half constructed from the IEEE 754 binary16. |
| 126 | static constexpr Half FromBits(uint16_t bits) |
| 127 | { |
| 128 | Half h{}; |
| 129 | h.bits_ = bits; |
| 130 | return h; |
| 131 | } |
| 132 | /// Returns the IEEE 754 binary16 representation. |
| 133 | constexpr uint16_t Bits() const |
| 134 | { |
nothing calls this directly
no outgoing calls
no test coverage detected