File StaticConcatenate.h

namespace podio
namespace utils

Variables

template<const std::string_view&... strs>
std::string_view static_concatenate_v = static_concatenate<strs...>::value

Variable template for concatenating a set of string_views into a single string_view at compile time.

template<const std::string_view&... strs>
struct static_concatenate
#include <podio/utilities/StaticConcatenate.h>

Helper struct to concatenate a set of string_views into a single string_view at compile time.

Public Static Functions

static inline auto init_arr()

Public Static Attributes

static auto array = init_arr()
static auto value = std::string_view(array.data(), array.size() - 1)