xapian-core
1.4.26
|
Convert types to std::string. More...
#include <config.h>
#include "str.h"
#include "omassert.h"
#include <cstdio>
#include <cstdlib>
#include <string>
#include <type_traits>
Go to the source code of this file.
Namespaces | |
Xapian | |
The Xapian namespace contains public interfaces for the Xapian library. | |
Xapian::Internal | |
Functions | |
template<class T > | |
static string | tostring_unsigned (T value) |
template<class T > | |
static string | tostring (T value) |
string | Xapian::Internal::str (int value) |
Convert int to std::string. More... | |
string | Xapian::Internal::str (unsigned int value) |
Convert unsigned int to std::string. More... | |
string | Xapian::Internal::str (long value) |
Convert long to std::string. More... | |
string | Xapian::Internal::str (unsigned long value) |
Convert unsigned long to std::string. More... | |
string | Xapian::Internal::str (long long value) |
Convert long long to std::string. More... | |
string | Xapian::Internal::str (unsigned long long value) |
Convert unsigned long long to std::string. More... | |
template<class T > | |
static string | Xapian::Internal::format (const char *fmt, T value) |
string | Xapian::Internal::str (double value) |
Convert double to std::string. More... | |
string | Xapian::Internal::str (const void *value) |
Convert const void * to std::string. More... | |
Convert types to std::string.
Definition in file str.cc.
|
inlinestatic |
|
inlinestatic |