Forms a constant string literal of the desired value.
#include <kumi/kumi.hpp>
#include <iostream>
int main()
{
using namespace kumi::literals;
auto n = "Peter"_id;
std::cout << n << "\n";
std::cout << s << "\n";
}
Compile-time text based identifier.
Definition identifier.hpp:162