Flow123d
3.9.0-c2ae2d0a8
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
Functions
_
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
w
Variables
Typedefs
Enumerations
Enumerator
a
b
c
d
f
g
h
i
m
n
o
p
r
s
u
w
y
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
z
Enumerations
a
b
c
d
f
h
i
m
n
o
p
r
s
t
u
v
Enumerator
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Related Functions
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
Files
File List
File Members
All
_
a
b
c
d
e
f
g
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
_
a
c
d
f
i
k
l
m
n
o
p
r
s
t
v
Variables
_
a
c
d
g
m
n
p
q
s
u
v
Typedefs
_
a
d
e
f
g
i
j
l
m
o
q
r
s
t
u
v
Enumerations
Enumerator
a
b
c
d
e
f
i
m
n
o
p
r
s
u
v
w
Macros
_
a
b
c
d
e
f
g
i
j
k
l
m
n
o
p
q
r
s
t
w
z
src
system
fmt
string.h
Go to the documentation of this file.
1
/*
2
Formatting library for C++ - string utilities
3
4
Copyright (c) 2012 - 2016, Victor Zverovich
5
All rights reserved.
6
7
For the license information refer to format.h.
8
*/
9
10
#ifndef FMT_STRING_H_
11
#define FMT_STRING_H_
12
13
#include "
system/fmt/format.h
"
14
15
namespace
fmt
{
16
17
/**
18
\rst
19
Converts *value* to ``std::string`` using the default format for type *T*.
20
21
**Example**::
22
23
#include "fmt/string.h"
24
25
std::string answer = fmt::to_string(42);
26
\endrst
27
*/
28
template
<
typename
T>
29
std::string
to_string
(
const
T &
value
) {
30
fmt::MemoryWriter
w;
31
w <<
value
;
32
return
w.
str
();
33
}
34
}
35
36
#endif // FMT_STRING_H_
fmt::BasicMemoryWriter
Definition:
format.h:2985
fmt::to_string
std::string to_string(const T &value)
Definition:
string.h:29
format.h
value
static constexpr bool value
Definition:
json.hpp:87
fmt::BasicWriter::str
std::basic_string< Char > str() const
Definition:
format.h:2451
fmt
Definition:
format.cc:82
Generated by
1.8.17