LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
debugging.h
1#ifndef HLDO_SPHERE_DEBUGGING_H
2#define HLDO_SPHERE_DEBUGGING_H
3
4namespace projects::hldo_sphere {
17namespace debugging {
18
25template <typename... Args>
26static std::string concat(Args &&...args) {
27 std::ostringstream ss;
28 (ss << ... << args);
29 return ss.str();
30}
31
32} // namespace debugging
33
34} // namespace projects::hldo_sphere
35
36#endif // HLDO_SPHERE_DEBUGGING_H
static std::string concat(Args &&...args)
Concatenate objects defining an operator<<(std::ostream&)
Definition: debugging.h:26
Implementation of the thesis Hogde Laplacians and Dirac Operators on the surface of the 3-Sphere.
Definition: assemble.h:15