| 323 | |
| 324 | template <typename VALUE> |
| 325 | bool StringToIntImpl(const StringPiece& input, VALUE* output) { |
| 326 | return IteratorRangeToNumber<StringPieceToNumberTraits<VALUE, 10> >::Invoke( |
| 327 | input.begin(), input.end(), output); |
| 328 | } |
| 329 | |
| 330 | template <typename VALUE, int BASE> |
| 331 | class StringPiece16ToNumberTraits |
no test coverage detected