| 359 | // cannot drift from DefaultMin()/DefaultMax(). |
| 360 | template <typename T> |
| 361 | bool IsInvalidMinMax(const T& min, const T& max) { |
| 362 | return max < min; |
| 363 | } |
| 364 | |
| 365 | template <typename T> |
| 366 | ::arrow::enable_if_t<std::is_integral<T>::value, optional<std::pair<T, T>>> |
no outgoing calls
no test coverage detected