| 6092 | } |
| 6093 | |
| 6094 | template <typename T> auto operator|(T const &other) const -> Parser { |
| 6095 | return Parser(*this) |= other; |
| 6096 | } |
| 6097 | |
| 6098 | // Forward deprecated interface with '+' instead of '|' |
| 6099 | template <typename T> auto operator+=(T const &other) -> Parser & { |