Namespaces
Variants
Views
Actions

std::holds_alternative

From cppreference.com
< cpp‎ | utility‎ | variant
Revision as of 15:21, 25 June 2024 by Space Mission (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
 
Defined in header <variant>
template< class T, class... Types >
constexpr bool holds_alternative( const std::variant<Types...>& v ) noexcept;
(since C++17)

Checks if the variant v holds the alternative T. The call is ill-formed if T does not appear exactly once in Types...

Contents

[edit] Parameters

v - variant to examine

[edit] Return value

true if the variant currently holds the alternative T, false otherwise.

[edit] Example

#include <cassert>
#include <string>
#include <variant>
 
int main()
{
    std::variant<int, std::string> v = "abc";
    assert(not std::holds_alternative<int>(v));
    assert(std::holds_alternative<std::string>(v));
}

[edit] See also

returns the zero-based index of the alternative held by the variant
(public member function) [edit]
reads the value of the variant given the index or the type (if the type is unique), throws on error
(function template) [edit]