| 8368 | accepts numbers exactly `Digits` digits. */ |
| 8369 | template<int Digits> |
| 8370 | constexpr auto digits() const noexcept |
| 8371 | { |
| 8372 | return uint_parser<T, Radix, Digits, Digits, Expected>{expected_}; |
| 8373 | } |
| 8374 | |
| 8375 | /** Returns a `uint_parser` identical to `*this`, except that it |
| 8376 | only accepts numbers `D` digits long, where `D` is in |
nothing calls this directly
no outgoing calls
no test coverage detected