Sprout/sprout/variant/get.hpp
bolero-MURAKAMI f9d4b475b4 add sprout/numeric/dft.wave.hpp
fix constexpr -> inline constexpr
2012-07-15 16:04:05 +09:00

37 lines
1.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>
inline SPROUT_CONSTEXPR U const& get(sprout::variant<Types...> const& operand) {
return operand.template get<U>();
}
template<typename U, typename... Types>
inline SPROUT_CONSTEXPR U& get(sprout::variant<Types...>& operand) {
return operand.template get<U>();
}
template<std::size_t I, typename... Types>
inline 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>
inline SPROUT_CONSTEXPR 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