| 9328 | template<typename DerivedT> |
| 9329 | template<typename T> |
| 9330 | auto ComposableParserImpl<DerivedT>::operator|( T const &other ) const -> Parser { |
| 9331 | return Parser() | static_cast<DerivedT const &>( *this ) | other; |
| 9332 | } |
| 9333 | } // namespace detail |
| 9334 | |
| 9335 | // A Combined parser |