xapian-core  2.0.0
str.h
Go to the documentation of this file.
1 
4 /* Copyright (C) 2009,2015,2024 Olly Betts
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see
18  * <https://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef XAPIAN_INCLUDED_STR_H
22 #define XAPIAN_INCLUDED_STR_H
23 
24 #include <string>
25 #include <string_view>
26 
27 namespace Xapian {
28 namespace Internal {
29 
31 std::string str(int value);
32 
34 std::string str(unsigned int value);
35 
37 std::string str(long value);
38 
40 std::string str(unsigned long value);
41 
43 std::string str(long long value);
44 
46 std::string str(unsigned long long value);
47 
49 std::string str(double value);
50 
52 std::string str(const void * value);
53 
59 inline std::string str(const std::string & value) { return value; }
60 
62 inline std::string str(std::string_view value) { return std::string(value); }
63 
65 inline std::string str(const char * value) { return value; }
66 
68 inline std::string str(bool value) {
69  return std::string(1, '0' | static_cast<char>(value));
70 }
71 
72 }
73 }
74 
76 
77 #endif // XAPIAN_INCLUDED_STR_H
string str(int value)
Convert int to std::string.
Definition: str.cc:91
The Xapian namespace contains public interfaces for the Xapian library.
Definition: compactor.cc:82