Main MRPT website > C++ reference for MRPT 1.9.9
typemeta_StaticString/test.cpp
/* +------------------------------------------------------------------------+
| Mobile Robot Programming Toolkit (MRPT) |
| http://www.mrpt.org/ |
| |
| Copyright (c) 2005-2018, Individual contributors, see AUTHORS file |
| See: http://www.mrpt.org/Authors - All rights reserved. |
| Released under BSD License. See details in http://www.mrpt.org/License |
+------------------------------------------------------------------------+ */
/** \example typemeta_StaticString/test.cpp */
//! [example sstring]
#include <iostream>
{
using namespace std;
using namespace mrpt::typemeta;
constexpr string_literal<3> s = "foo";
cout << "string_literal<3>=" << s << endl;
constexpr auto a = literal("foo");
constexpr auto b = literal("bar");
// In GCC7 this can be "constexpr", but it fails in MSVC 2017 (!)
auto ab = a + b;
cout << "a=" << a << endl;
cout << "b=" << b << endl;
cout << "a+b=" << ab << endl;
static_assert(ab.size() == 6, "***");
cout << "(a+b).size()=" << ab.size() << endl;
cout << "(a+b)[0]=" << ab[0] << endl;
cout << "(a+b)[5]=" << ab[5] << endl;
}
//! [example sstring]
//! [example num2str]
#include <iostream>
{
using namespace std;
using namespace mrpt::typemeta;
constexpr auto n42 = num_to_string<42>::value;
constexpr auto n9999 = num_to_string<9999>::value;
cout << "42 as string=" << n42 << endl;
cout << "9999 as string=" << n9999 << endl;
}
//! [example num2str]
int main(int argc, char** argv)
{
try
{
return 0;
}
catch (std::exception& e)
{
std::cout << "Exception: " << e.what() << std::endl;
return -1;
}
}
Test_StaticNum2Str
void Test_StaticNum2Str()
[example sstring]
Definition: vision_stereo_rectify/test.cpp:42
mrpt::typemeta
Definition: config/CConfigFileBase.h:21
s
GLdouble s
Definition: glext.h:3676
num_to_string.h
mrpt::typemeta::num_to_string
constexpr string representation of a number.
Definition: num_to_string.h:44
main
int main()
Definition: vision_stereo_rectify/test.cpp:78
mrpt::typemeta::string_literal
Definition: static_string.h:23
b
GLubyte GLubyte b
Definition: glext.h:6279
Test_StaticString
void Test_StaticString()
[example sstring]
Definition: vision_stereo_rectify/test.cpp:15
static_string.h
mrpt::typemeta::literal
constexpr auto literal(const char(&lit)[N_PLUS_1]) -> string_literal< N_PLUS_1 - 1 >
Definition: static_string.h:43
a
GLubyte GLubyte GLubyte a
Definition: glext.h:6279



Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST