mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
23 lines
734 B
C++
23 lines
734 B
C++
#ifndef SPROUT_VARIANT_APPLY_VISITOR_HPP
|
|
#define SPROUT_VARIANT_APPLY_VISITOR_HPP
|
|
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/utility/forward.hpp>
|
|
#include <sprout/variant/visitor_result.hpp>
|
|
|
|
namespace sprout {
|
|
//
|
|
// apply_visitor
|
|
//
|
|
template<typename Visitor, typename Visitable>
|
|
inline SPROUT_CONSTEXPR typename sprout::visitor_result<
|
|
typename std::remove_reference<Visitor>::type,
|
|
typename std::remove_reference<Visitable>::type
|
|
>::type
|
|
apply_visitor(Visitor&& visitor, Visitable&& visitable) {
|
|
return sprout::forward<Visitable>(visitable).apply_visitor(sprout::forward<Visitor>(visitor));
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_VARIANT_APPLY_VISITOR_HPP
|