| 8502 | parses digits as base-`Radix2` instead of base-`Radix`. */ |
| 8503 | template<int Radix2> |
| 8504 | constexpr auto base() const noexcept |
| 8505 | { |
| 8506 | return int_parser<T, Radix2, MinDigits, MaxDigits, Expected>{ |
| 8507 | expected_}; |
| 8508 | } |
| 8509 | |
| 8510 | /** Returns an `int_parser` identical to `*this`, except that it only |
| 8511 | accepts numbers exactly `Digits` digits. */ |
no outgoing calls
no test coverage detected