IODA
|
C++ API. More...
Modules | |
Attributes and Has_Attributes | |
Ancillary data attached to variables and groups. | |
Engines | |
Public API for engines. | |
Groups and Data Layout | |
Public API for ioda::Group, ioda::ObsGroup, and data layout policies. | |
Type System | |
The data type system. | |
Variables, Data Access, and Selections | |
The main data storage methods and objects in IODA. | |
Files | |
file | Eigen_Compat.h |
Convenience functions to work with Eigen objects. | |
Functions | |
IODA_DL std::vector< std::string > | ioda::splitPaths (const std::string &p) |
Split a string based on occurances of the '/' character. More... | |
IODA_DL std::string | ioda::condensePaths (const std::vector< std::string > &p, size_t start=0, size_t end=std::string::npos) |
The inverse of splitPaths. Concatenate strings, separating with '/'. More... | |
C++ API.
std::string ioda::condensePaths | ( | const std::vector< std::string > & | p, |
size_t | start = 0 , |
||
size_t | end = std::string::npos |
||
) |
The inverse of splitPaths. Concatenate strings, separating with '/'.
p | represents the path components. |
start | is an index of the vector to start with. |
end | is an index of the vector to end with. If set to std::string::npos, then the end will be determined from p.size(). |
Definition at line 41 of file StringFuncs.cpp.
std::vector< std::string > ioda::splitPaths | ( | const std::string & | p | ) |
Split a string based on occurances of the '/' character.
p | is the input path |
Definition at line 14 of file StringFuncs.cpp.