| 6423 | template<typename DerivedT> |
| 6424 | template<typename T> |
| 6425 | auto ComposableParserImpl<DerivedT>::operator|( T const &other ) const -> Parser { |
| 6426 | return Parser() | static_cast<DerivedT const &>( *this ) | other; |
| 6427 | } |
| 6428 | } // namespace detail |
| 6429 | |
| 6430 | // A Combined parser |