SSS - S3 Toolkit 0.9.6
S3 client library and applications
Loading...
Searching...
No Matches
sss::SplitRange Class Reference

Range over splits. More...

#include <utility.h>

Detailed Description

Range over splits.

const std::string x = "meta1:value1;meta2:value2";
for (auto i : SplitRange(x, ";")) {
auto s = begin(SplitRange(i, ":"));
cout << *s++ << ": " << *s << endl;
}
Range over splits.
Definition utility.h:150

The documentation for this class was generated from the following file: