#include <optional>
#include <sstream>
#include <string>
#include <string_view>
#include <utility>
#include <vector>
#include "stringfunctions.h"
#include "traits.h"
Go to the source code of this file.
|
using | smash::Version = std::string |
| Descriptive alias for storing a SMASH version associated to keys metadata. More...
|
|
using | smash::KeyMetadata = std::initializer_list< std::string_view > |
| Descriptive alias for storing keys metadata. More...
|
|
using | smash::KeyLabels = std::vector< std::string > |
| Descriptive alias for storing key labels, i.e. More...
|
|
|
KeyLabels | smash::operator+ (const KeyLabels &lhs, std::string_view rhs) |
| Overload of the + operator to add a label to a KeyLabels object. More...
|
|
KeyLabels | smash::operator+ (KeyLabels &&lhs, std::string_view rhs) |
| Overload of the + operator to add a label to a KeyLabels object. More...
|
|