Sprout/sprout/variant/get.hpp

26 lines
626 B
C++
Raw Normal View History

#ifndef SPROUT_VARIANT_GET_HPP
#define SPROUT_VARIANT_GET_HPP
#include <cstddef>
#include <sprout/config.hpp>
2012-09-29 09:41:13 +00:00
#include <sprout/tuple/tuple/get.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>();
}
2012-09-29 09:41:13 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_VARIANT_GET_HPP