| //===----------------------------------------------------------------------===// |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| //===----------------------------------------------------------------------===// |
| // [variant.variant], class template variant |
| // [variant.helper], variant helper classes |
| using std::variant_alternative; |
| using std::variant_size_v; |
| // [variant.get], value access |
| using std::holds_alternative; |
| using std::variant_alternative_t; |
| // [variant.relops], relational operators |
| // [variant.visit], visitation |
| // [variant.monostate], class monostate |
| // [variant.specalg], specialized algorithms |
| // [variant.bad.access], class bad_variant_access |
| using std::bad_variant_access; |
| // [variant.hash], hash support |