#include <lexy/dsl/base.hpp>
#include <lexy/dsl/choice.hpp>
#include <lexy/dsl/if.hpp>
#include <lexy/dsl/literal.hpp>
#include <lexy/dsl/operator.hpp>
Go to the source code of this file.
Classes | |
struct | lexyd::_minus |
struct | lexyd::_plus |
struct | lexy::_sign< I > |
struct | lexy::minus_sign |
struct | lexy::plus_sign |
Namespaces | |
lexy | |
lexyd | |
Variables | |
constexpr auto | lexyd::minus_sign = if_(_minus{}) |
Matches a minus sign or nothing, producing +1 or -1. More... | |
constexpr auto | lexyd::plus_sign = if_(_plus{}) |
Matches a plus sign or nothing, producing +1. More... | |
constexpr auto | lexyd::sign = if_(_plus{} | _minus{}) |
Matches a plus or minus sign or nothing, producing +1 or -1. More... | |