| 6225 | template <typename DerivedT> |
| 6226 | template <typename T> |
| 6227 | auto ComposableParserImpl<DerivedT>::operator|(T const &other) const -> Parser { |
| 6228 | return Parser() | static_cast<DerivedT const &>(*this) | other; |
| 6229 | } |
| 6230 | } // namespace detail |
| 6231 | |
| 6232 | // A Combined parser |