#ifndef SPROUT_WEED_EXPR_EXPR_HPP #define SPROUT_WEED_EXPR_EXPR_HPP #include #include #include namespace sprout { namespace weed { // // expr // template class expr { public: typedef Tag expr_tag; typedef sprout::tuples::tuple args_type; private: args_type args_; public: template SPROUT_CONSTEXPR explicit expr(As&&... args) : args_(sprout::forward(args)...) {} SPROUT_CONSTEXPR args_type const& args() const { return args_; } }; } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_EXPR_EXPR_HPP