mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Common: Add variant utilities
This commit is contained in:
26
Source/Core/Common/VariantUtil.h
Normal file
26
Source/Core/Common/VariantUtil.h
Normal file
@ -0,0 +1,26 @@
|
||||
// Copyright 2018 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include <variant>
|
||||
|
||||
namespace detail
|
||||
{
|
||||
template <typename... From>
|
||||
struct VariantCastProxy
|
||||
{
|
||||
const std::variant<From...>& v;
|
||||
|
||||
template <typename... To>
|
||||
operator std::variant<To...>() const
|
||||
{
|
||||
return std::visit([](auto&& arg) { return std::variant<To...>{arg}; }, v);
|
||||
}
|
||||
};
|
||||
} // namespace detail
|
||||
|
||||
template <typename... From>
|
||||
auto VariantCast(const std::variant<From...>& v)
|
||||
{
|
||||
return detail::VariantCastProxy<From...>{v};
|
||||
}
|
Reference in New Issue
Block a user