| 22 | */ |
| 23 | template <class T> |
| 24 | inline size_t ToString(const T& t, char* buf, size_t len) { |
| 25 | using TParam = typename TTypeTraits<T>::TFuncParam; |
| 26 | |
| 27 | return ToStringImpl<TParam>(t, buf, len); |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Floating point to string conversion mode, values are enforced by `dtoa_impl.cpp`. |
no outgoing calls