C++ Essence Library 0.1.0
A Utility Library for Modern C++ Programming
|
Some tokens of the C++ programming language. More...
#include <language_tokens.hpp>
Static Public Attributes | |
static constexpr literal_string | reference {U8("&")} |
static constexpr literal_string | dot {U8(".")} |
static constexpr literal_string | scope {U8("::")} |
static constexpr literal_string | arrow {U8("->")} |
static constexpr literal_string | comma {U8(",")} |
static constexpr literal_string | semicolon {U8(";")} |
static constexpr literal_string | enum_prefix {U8("enum ")} |
static constexpr literal_string | class_prefix {U8("class ")} |
static constexpr literal_string | struct_prefix {U8("struct ")} |
static constexpr literal_string | left_parentheses {U8("(")} |
static constexpr literal_string | left_angle_bracket {U8("<")} |
static constexpr literal_string | left_square_bracket {U8("[")} |
static constexpr literal_string | right_parentheses {U8(")")} |
static constexpr literal_string | right_angle_bracket {U8(">")} |
static constexpr literal_string | right_square_bracket {U8("]")} |
static constexpr literal_string | left_enclosing_tokens |
static constexpr literal_string | right_enclosing_tokens |
static constexpr auto | type_prefixes = std::forward_as_tuple(enum_prefix, class_prefix, struct_prefix) |
Some tokens of the C++ programming language.
|
staticconstexpr |
|
staticconstexpr |