Sprout/sprout/variant/get.hpp
bolero-MURAKAMI e11da4400b sprout/variant/variant.hpp 修正
sprout/weed/attr_cnv/bitwise_or.hpp (variant に対応)
2012-01-11 01:34:37 +09:00

37 lines
1 KiB
C++

#ifndef SPROUT_VARIANT_GET_HPP
#define SPROUT_VARIANT_GET_HPP
#include <cstddef>
#include <sprout/config.hpp>
#include <sprout/tuple/tuple.hpp>
#include <sprout/variant/variant.hpp>
namespace sprout {
//
// get
//
template<typename U, typename... Types>
SPROUT_CONSTEXPR U const& get(sprout::variant<Types...> const& operand) {
return operand.template get<U>();
}
template<typename U, typename... Types>
U& get(sprout::variant<Types...>& operand) {
return operand.template get<U>();
}
template<std::size_t I, typename... Types>
SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<
I,
sprout::variant<Types...>
>::type const& get(sprout::variant<Types...> const& operand) {
return operand.template get_at<I>();
}
template<std::size_t I, typename... Types>
typename sprout::tuples::tuple_element<
I,
sprout::variant<Types...>
>::type& get(sprout::variant<Types...>& operand) {
return operand.template get_at<I>();
}
} // namespace sprout
#endif // #ifndef SPROUT_VARIANT_GET_HPP