- functional[meta header]
- std[meta namespace]
- copyable_function[meta class]
- function template[meta id-type]
- cpp26[meta cpp]
// operator==により、以下のオーバーロードが使用可能になる
bool operator!=(const copyable_function& f, nullptr_t) noexcept; // (1)
bool operator!=(nullptr_t, const copyable_function& f) noexcept; // (2)
- nullptr_t[link /reference/cstddef/nullptr_t.md]
非等値比較する。
static_cast<bool>(f)
#include <iostream>
#include <functional>
int ident(int x) { return x; }
int main()
{
std::copyable_function<int(int)> f = ident;
if (f != nullptr) {
std::cout << "not empty" << std::endl;
}
f = nullptr;
if (f != nullptr) {}
else {
std::cout << "empty" << std::endl;
}
}
not empty
empty
- C++26
- Clang: ??
- GCC: ??
- ICC: ??
- Visual C++: ??