Bitcoin ABC 0.30.5
P2P Digital Currency
variant.h
Go to the documentation of this file.
1// Copyright (c) 2023 The Bitcoin developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_UTIL_VARIANT_H
6#define BITCOIN_UTIL_VARIANT_H
7
8namespace variant {
9
10template <class... Ts> struct overloaded : Ts... {
11 using Ts::operator()...;
12};
13// explicit deduction guide (not needed as of C++20)
14template <class... Ts> overloaded(Ts...) -> overloaded<Ts...>;
15
16} // namespace variant
17
18#endif // BITCOIN_UTIL_VARIANT_H
Definition: variant.h:8
overloaded(Ts...) -> overloaded< Ts... >