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-09-29 09:41:13 +00:00
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
2011-11-06 01:56:57 +00:00
|
|
|
#include <sprout/variant/variant.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// get
|
|
|
|
//
|
|
|
|
template<typename U, typename... Types>
|
2012-10-04 16:53:39 +00:00
|
|
|
inline SPROUT_CONSTEXPR U const&
|
|
|
|
get(sprout::variant<Types...> const& operand) {
|
2011-11-06 01:56:57 +00:00
|
|
|
return operand.template get<U>();
|
|
|
|
}
|
|
|
|
template<typename U, typename... Types>
|
2012-10-04 16:53:39 +00:00
|
|
|
inline SPROUT_CONSTEXPR U&
|
|
|
|
get(sprout::variant<Types...>& operand) {
|
2011-11-06 01:56:57 +00:00
|
|
|
return operand.template get<U>();
|
|
|
|
}
|
2012-09-29 09:41:13 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
2011-11-06 01:56:57 +00:00
|
|
|
#endif // #ifndef SPROUT_VARIANT_GET_HPP
|