Sprout/sprout/variant/apply_visitor.hpp

31 lines
1.1 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_VARIANT_APPLY_VISITOR_HPP
#define SPROUT_VARIANT_APPLY_VISITOR_HPP
2012-12-19 14:06:08 +00:00
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/utility/forward.hpp>
2012-12-19 15:09:05 +00:00
#include <sprout/variant/visitor_result.hpp>
namespace sprout {
2012-12-19 14:06:08 +00:00
//
// apply_visitor
//
template<typename Visitor, typename Visitable>
2012-12-19 14:06:08 +00:00
inline SPROUT_CONSTEXPR typename sprout::visitor_result<
typename std::remove_reference<Visitor>::type,
typename std::remove_reference<Visitable>::type
>::type
2012-10-05 15:58:56 +00:00
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