| 336 | |
| 337 | template <typename VALUE> |
| 338 | bool String16ToIntImpl(const StringPiece16& input, VALUE* output) { |
| 339 | return IteratorRangeToNumber<StringPiece16ToNumberTraits<VALUE, 10> >::Invoke( |
| 340 | input.begin(), input.end(), output); |
| 341 | } |
| 342 | |
| 343 | } // namespace |
| 344 |
no test coverage detected