2011-11-06 01:56:57 +00:00
|
|
|
#ifndef SPROUT_VARIANT_GET_HPP
|
|
|
|
#define SPROUT_VARIANT_GET_HPP
|
|
|
|
|
2012-01-10 16:34:37 +00:00
|
|
|
#include <cstddef>
|
2011-11-06 01:56:57 +00:00
|
|
|
#include <sprout/config.hpp>
|
2012-01-10 16:34:37 +00:00
|
|
|
#include <sprout/tuple/tuple.hpp>
|
2011-11-06 01:56:57 +00:00
|
|
|
#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>();
|
|
|
|
}
|
2012-01-10 16:34:37 +00:00
|
|
|
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>();
|
|
|
|
}
|
2011-11-06 01:56:57 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_VARIANT_GET_HPP
|