| 1531 | |
| 1532 | template <typename T> |
| 1533 | bool TestFloatStatistics<T>::signbit(c_type val) { |
| 1534 | return std::signbit(val); |
| 1535 | } |
| 1536 | template <> |
| 1537 | bool TestFloatStatistics<Float16LogicalType>::signbit(c_type val) { |
| 1538 | return Float16::FromLittleEndian(val.ptr).signbit(); |
no test coverage detected