Home
last modified time | relevance | path

Searched refs:to_dec_string (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/libc/src/__support/CPP/
H A Dstring.h201 template <typename T> string to_dec_string(T value) { in to_dec_string() function
208 return internal::to_dec_string<int>(value); in to_string()
211 return internal::to_dec_string<long>(value); in to_string()
214 return internal::to_dec_string<long long>(value); in to_string()
217 return internal::to_dec_string<unsigned>(value); in to_string()
220 return internal::to_dec_string<unsigned long>(value); in to_string()
223 return internal::to_dec_string<unsigned long long>(value); in to_string()