mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
e11da4400b
sprout/weed/attr_cnv/bitwise_or.hpp (variant に対応)
37 lines
1 KiB
C++
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
|