#ifndef SPROUT_FUNCTIONAL_POLYMORPHIC_CALL_FUN_HPP #define SPROUT_FUNCTIONAL_POLYMORPHIC_CALL_FUN_HPP #include #include #include namespace sprout { // // call_fun_t // call_fun_ // struct call_fun_t { public: template SPROUT_CONSTEXPR decltype(std::declval()(std::declval()...)) operator()(F&& f, As&&... as) const SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(std::declval()(std::declval()...))) { return sprout::forward(f)(sprout::forward(as)...); } }; namespace { SPROUT_STATIC_CONSTEXPR sprout::call_fun_t call_fun_ = {}; } // anonymous-namespace } // namespace sprout #endif // #ifndef SPROUT_FUNCTIONAL_POLYMORPHIC_CALL_FUN_HPP