| 152 | // Values may be rounded on over- and underflow. |
| 153 | template <typename T> |
| 154 | bool SafeStringToNumeric(StringPiece s, T* value) { |
| 155 | return ProtoParseNumeric(s, value); |
| 156 | } |
| 157 | |
| 158 | // Converts from an int64 to a human readable string representing the |
| 159 | // same number, using decimal powers. e.g. 1200000 -> "1.20M". |
nothing calls this directly
no test coverage detected