@name Properties @{
| 214 | /// @name Properties |
| 215 | // @{ |
| 216 | constexpr bool IsNaN() const |
| 217 | { |
| 218 | return ((bits_ & 0x7c00u) == 0x7c00u) && |
| 219 | ((bits_ & 0x03ffu) != 0); |
| 220 | } |
| 221 | /// @} Properties |
| 222 | |
| 223 | private: |
no outgoing calls
no test coverage detected