| 7534 | template<typename DerivedT> |
| 7535 | template<typename T> |
| 7536 | auto ComposableParserImpl<DerivedT>::operator|( T const &other ) const -> Parser { |
| 7537 | return Parser() | static_cast<DerivedT const &>( *this ) | other; |
| 7538 | } |
| 7539 | } // namespace detail |
| 7540 | |
| 7541 | // A Combined parser |