![]() |
![]()
| ![]() |
![]()
NAMEstd::bit_not - std::bit_not Synopsis Defined in header <functional>
Specializations The standard library provides a specialization of std::bit_not
when T is not
Member types Type Definition
Member functions operator() returns the result of bitwise NOT of its argument
std::bit_not::operator()
Parametersarg - value to compute bitwise NOT of Return valueThe result of ~arg. ExceptionsMay throw implementation-defined exceptions. Possible implementation constexpr T operator()(const T& arg) const
Notes Although std::bit_not is added via post-C++11 proposal N3421, it
is treated as a
|