Go to the source code of this file.
|
template<typename Then , typename Condition > |
constexpr auto | lexyd::do_while (Then then, Condition condition) |
| Matches then once, then while_(condition >> then) . More...
|
|
template<typename Rule > |
constexpr auto | lexyd::loop (Rule) |
| Repeatedly matches the rule until a break rule matches. More...
|
|
template<typename Rule > |
constexpr auto | lexyd::while_ (Rule) |
| Matches the branch rule as often as possible. More...
|
|
template<typename Rule > |
constexpr auto | lexyd::while_one (Rule rule) |
| Matches the rule at least once, then as often as possible. More...
|
|