BioDynaMo  v1.05.119-a4ff3934
Namespaces | Functions
string.h File Reference
#include <sstream>
#include <string>
#include <vector>
Include dependency graph for string.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 bdm
 
 bdm::detail
 

Functions

bool bdm::EndsWith (const std::string &str, const std::string &suffix)
 
bool bdm::StartsWith (const std::string &str, const std::string &prefix)
 
std::vector< std::string > bdm::Split (const std::string &s, const std::string &delimiter)
 
void bdm::detail::ConcatNextPart (std::ostringstream *ss)
 Appends the closing string to the message. More...
 
template<typename T , typename... Args>
void bdm::detail::ConcatNextPart (std::ostringstream *ss, const T &arg, const Args &... parts)
 Appends the next part of the message. More...
 
template<typename... Args>
std::string bdm::Concat (const Args &... parts)
 Concatenates all arguments into a string. Equivalent to streaming all arguments into a stringstream and calling stream.str() More...