| 12 | template <class T> |
| 13 | struct NumericLimits { |
| 14 | DUCKDB_API static constexpr T Minimum() { return std::numeric_limits<T>::lowest(); }; |
| 15 | DUCKDB_API static constexpr T Maximum() { return std::numeric_limits<T>::max(); }; |
| 16 | DUCKDB_API static bool IsSigned(); |
| 17 | DUCKDB_API static idx_t Digits(); |
nothing calls this directly
no outgoing calls
no test coverage detected