- memory[meta header]
- std[meta namespace]
- indirect[meta class]
- function[meta id-type]
- cpp26[meta cpp]
template <class U, class AA>
friend constexpr bool operator==(
const indirect& lhs, const indirect<U, AA>& rhs) noexcept(see below); // (1)
template <class U>
friend constexpr bool operator==(
const indirect& lhs, const U& rhs) noexcept(see below); // (2)- (1) : 2つの
indirectオブジェクトが所有する値を等値比較する。 - (2) :
indirectオブジェクトが所有する値と、別の値rhsを等値比較する。
いずれもHidden friendsとして定義される。
- (1) : 式
*lhs == *rhsが適格であり、その結果がboolに変換可能であること。 - (2) : 式
*lhs == rhsが適格であり、その結果がboolに変換可能であること。
- (1) :
lhsとrhsのいずれかが無効値状態であればlhs.valueless_after_move() == rhs.valueless_after_move()、そうでなければ*lhs == *rhs。 - (2) :
lhsが無効値状態であればfalse、そうでなければ*lhs == rhs。
この演算子により、operator!=が使用可能になる。
#include <cassert>
#include <memory>
int main()
{
std::indirect<int> a{42};
std::indirect<int> b{42};
assert(a == b); // (1) indirect同士の比較
assert(a == 42); // (2) 値との比較
assert(a != 0);
}- std::indirect[link ../indirect.md]
- C++26
- Clang: 22 [mark noimpl]
- GCC: 16.1 [mark verified]
- Visual C++: 2026 Update 2 [mark noimpl]