#ifndef SPROUT_WEED_PARSER_LIM_HPP #define SPROUT_WEED_PARSER_LIM_HPP #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace weed { // // limit_p // template struct limit_p : public sprout::weed::parser_base { public: SPROUT_STATIC_CONSTEXPR std::size_t limit = Limit; public: template struct attribute { public: typedef typename sprout::weed::traits::attribute_of::type type; }; template struct result { public: typedef sprout::weed::parser_result::type> type; }; private: typedef typename sprout::weed::traits::terminal_or_expr_of::type expr_type; private: expr_type expr_; sprout::weed::limited::category limited_category_; public: limit_p() = default; explicit SPROUT_CONSTEXPR limit_p( Parser const& p, sprout::weed::limited::category limited_category = sprout::weed::limited::discard ) : expr_(sprout::weed::make_terminal_or_expr(p)) , limited_category_(limited_category) {} SPROUT_CONSTEXPR sprout::weed::limited::category limited_category() const { return limited_category_; } template SPROUT_CONSTEXPR typename result::type operator()( Iterator first, Iterator last, Context const& ctx ) const { return sprout::weed::eval(expr_, ctx).presult(); } }; template SPROUT_CONSTEXPR std::size_t limit_p::limit; // // lim // template SPROUT_CONSTEXPR sprout::weed::limit_p lim(Parser const& p) { return sprout::weed::limit_p(p); } template SPROUT_CONSTEXPR sprout::weed::limit_p lim( Parser const& p, sprout::weed::limited::category limited_category ) { return sprout::weed::limit_p(p, limited_category); } namespace traits { // // limit_of // template struct limit_of, Iterator, Context> : public std::integral_constant {}; } // namespace traits } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_PARSER_LIM_HPP