ppap4lmp  0.7.2
join.h
Go to the documentation of this file.
1 
8 #ifndef UTILS_JOIN_H
9 #define UTILS_JOIN_H
10 
11 #include <alias/std.h>
12 
14 namespace utils
15 {
27  Str join(
28  const Vec<Str> &strs,
29  const Str &jointer);
30 }
31 
32 #endif
std::string Str
Str is an alias for string.
Definition: std.h:21
std::vector< T > Vec
Vec is an alias for vector (same as list in Python).
Definition: std.h:27
This file includes a part of C++ Standard Template Library and defines aliases for them...
Str join(const Vec< Str > &strs, const Str &jointer)
Mimicking Python&#39;s join.
Definition: join.cpp:14
Namespace for utility functions.
Definition: join.h:14