Create a typed Keyword for reuse.
#include <raberu/raberu.hpp>
#include <iostream>
template<typename T>
struct is_big : std::bool_constant<(sizeof(T) > 2)> {};
inline constexpr auto large_value = rbr::keyword<is_big>("large"_id);
int main()
{
}
Raberu literals namespace.
Definition: keywords.hpp:369
Defines a group of options for processing.
Definition: settings.hpp:50