| 8359 | parses digits as base-`Radix2` instead of base-`Radix`. */ |
| 8360 | template<int Radix2> |
| 8361 | constexpr auto base() const noexcept |
| 8362 | { |
| 8363 | return uint_parser<T, Radix2, MinDigits, MaxDigits, Expected>{ |
| 8364 | expected_}; |
| 8365 | } |
| 8366 | |
| 8367 | /** Returns a `uint_parser` identical to `*this`, except that it only |
| 8368 | accepts numbers exactly `Digits` digits. */ |
nothing calls this directly
no outgoing calls
no test coverage detected