Technical Specification | ||||
Filesystem library(filesystem TS) | ||||
Library fundamentals(library fundamentals TS) | ||||
Library fundamentals 2(library fundamentals TS v2) | ||||
Library fundamentals 3(library fundamentals TS v3) | ||||
Extensions for parallelism(parallelism TS) | ||||
Extensions for parallelism 2(parallelism TS v2) | ||||
Extensions for concurrency(concurrency TS) | ||||
Extensions for concurrency 2(concurrency TS v2) | ||||
Concepts(concepts TS) | ||||
Ranges(ranges TS) | ||||
Reflection(reflection TS) | ||||
Mathematical special functions(special functions TR) | ||||
Experimental Non-TS | ||||
Pattern Matching | ||||
Linear Algebra | ||||
std::execution | ||||
Contracts | ||||
2D Graphics |
Convenience aliases for containers usingpolymorphic_allocator | ||||
Memory resource classes | ||||
Global memory resources | ||||
Type-erased allocator support for existing classes | ||||
Defined in header <experimental/functional> | ||
template<class R,class...ArgTypes> bool operator==(conststd::experimental::function<R(ArgTypes...)>& f, | (1) | (library fundamentals TS) |
template<class R,class...ArgTypes> bool operator==(std::nullptr_t, | (2) | (library fundamentals TS) (removed in library fundamentals TS v3) |
template<class R,class...ArgTypes> bool operator!=(conststd::experimental::function<R(ArgTypes...)>& f, | (3) | (library fundamentals TS) (removed in library fundamentals TS v3) |
template<class R,class...ArgTypes> bool operator!=(std::nullptr_t, | (4) | (library fundamentals TS) (removed in library fundamentals TS v3) |
Compares astd::experimental::function
with a null pointer. Empty functions (that is, functions without a callable target) compare equal, non-empty functions compare non-equal.
The | (library fundamentals TS v3) |
f | - | std::experimental::function to compare |
(removed in C++20) | compares astd::function withnullptr (function template)[edit] |