| (1) | ||
bool all() const; | (until C++11) | |
bool all() const noexcept; | (since C++11) (until C++23) | |
constexpr bool all() const noexcept; | (since C++23) | |
| (2) | ||
bool any() const; | (until C++11) | |
bool any() const noexcept; | (since C++11) (until C++23) | |
constexpr bool any() const noexcept; | (since C++23) | |
| (3) | ||
bool none() const; | (until C++11) | |
bool none() const noexcept; | (since C++11) (until C++23) | |
constexpr bool none() const noexcept; | (since C++23) |
true.true.true.(none).
true if all bits are set to true, otherwise false.true if any of the bits are set to true, otherwise false.true if none of the bits are set to true, otherwise false.#include <bitset>
#include <iostream>
int main()
{
std::bitset<4> b1("0000");
std::bitset<4> b2("0101");
std::bitset<4> b3("1111");
std::cout
<< "bitset\t" << "all\t" << "any\t" << "none\n"
<< b1 << '\t' << b1.all() << '\t' << b1.any() << '\t' << b1.none() << '\n'
<< b2 << '\t' << b2.all() << '\t' << b2.any() << '\t' << b2.none() << '\n'
<< b3 << '\t' << b3.all() << '\t' << b3.any() << '\t' << b3.none() << '\n';
}Output:
bitset all any none 0000 0 0 1 0101 0 1 0 1111 1 1 0
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 693 | C++98 | the member function all() was not provided | provided |
returns the number of bits set to true (public member function) |
|
|
(C++20) | counts the number of 1 bits in an unsigned integer (function template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/utility/bitset/all_any_none