Go to the documentation of this file.
31 #include <unordered_map>
40 inline const std::string&
63 std::stringstream
str;
69 Contains(
const std::string& haystack,
const std::string& needle,
bool caseInsensitive =
false);
71 std::vector<std::string>
Split(
const std::string&
source,
72 const std::string& splitBy,
73 bool trimElements =
false,
74 bool removeEmptyElements =
false);
75 std::vector<std::string>
split(
const std::string&
source,
76 const std::string& splitBy,
77 bool trimElements =
false,
78 bool removeEmptyElements =
false);
79 bool starts_with(
const std::string& haystack,
const std::string& needle);
80 bool ends_with(
const std::string& haystack,
const std::string& needle);
86 buffer.reserve(
data.size());
87 for (
size_t pos = 0; pos !=
data.size(); ++pos)
92 buffer.append(
"&");
95 buffer.append(
""");
98 buffer.append(
"'");
101 buffer.append(
"<");
104 buffer.append(
">");
107 buffer.append(&
data[pos], 1);
119 template <
typename T>
127 template <
typename T>
131 str <<
"Vector<" << armarx::GetTypeString<T>() <<
">(" << vector.size() <<
"):\n";
133 for (
unsigned int i = 0; i < vector.size(); ++i)
135 str <<
"\t(" << i <<
"): " << vector.at(i) <<
"\n";
141 template <
typename T>
145 str <<
"Deque<" << armarx::GetTypeString<T>() <<
">(" << deque.size() <<
"):\n";
147 for (
unsigned int i = 0; i < deque.size(); ++i)
149 str <<
"\t(" << i <<
"): " << deque.at(i) <<
"\n";
155 template <
typename T1,
typename T2>
159 str <<
"Pair<" << armarx::GetTypeString<T1>() <<
", " << armarx::GetTypeString<T2>()
161 str <<
"\t(" << pair.first <<
", " << pair.second <<
")\n";
165 template <
typename T1,
typename T2>
169 str <<
"Map<" << armarx::GetTypeString<T1>() <<
", " << armarx::GetTypeString<T2>() <<
">("
170 << map.size() <<
"):\n";
171 for (
const auto& pair : map)
173 str <<
"\t" << pair.first <<
": " << pair.second <<
"\n";
178 template <
typename T1,
typename T2>
182 str <<
"Unordered Map<" << armarx::GetTypeString<T1>() <<
", "
183 << armarx::GetTypeString<T2>() <<
">(" << map.size() <<
"):\n";
184 for (
const auto& pair : map)
186 str <<
"\t" << pair.first <<
": " << pair.second <<
"\n";
194 return str << static_cast<void*>(
nullptr);
198 #define VAROUT(x) std::string(std::string(#x) + ": " + armarx::ValueToString(x)) + " "
199 #define QUOTED(x) std::string("`" + armarx::ValueToString(x) + "`")
unsigned int toUInt(const std::string &input)
int toInt(const std::string &input)
bool Contains(const ContainerType &container, const ElementType &searchElement)
std::vector< std::string > Split(const std::string &source, const std::string &splitBy, bool trimElements=false, bool removeEmptyElements=false)
float toFloat(const std::string &input)
Converts a string to float and uses always dot as seperator.
std::string Encode(const std::string &data)
bool starts_with(const std::string &haystack, const std::string &needle)
void EncodeInline(std::string &data)
std::shared_ptr< Value > value()
std::string ValueToString(const T &value)
ReaderT::InputType & input
std::string to_string(std::string s)
Vertex source(const detail::edge_base< Directed, Vertex > &e, const PCG &)
const std::string & to_string(const std::string &s)
ARMARXCORE_IMPORT_EXPORT ostream & operator<<(ostream &stream, const armarx::RunningTaskIceBase &task)
bool ends_with(const std::string &haystack, const std::string &needle)
double s(double t, double s0, double v0, double a0, double j)
This file offers overloads of toIce() and fromIce() functions for STL container types.
std::vector< std::string > split(const std::string &source, const std::string &splitBy, bool trimElements=false, bool removeEmptyElements=false)