最終更新日時(UTC):
が更新

履歴 編集

function
<bitset>

std::bitset::any

bool any() const;                    // (1) C++03
bool any() const noexcept;           // (1) C++11
constexpr bool any() const noexcept; // (1) C++23

概要

いずれかのビットが1になっているかを判定する。

戻り値

いずれかのビットが1になっていればtrue、そうでなければfalseを返す。
この関数は、以下のプログラムと同じ動作をする:

return count() != 0;

#include <cassert>
#include <bitset>

int main()
{
  {
    std::bitset<4> bs("1011");

    bool result = bs.any();
    assert(result);
  }
  {
    std::bitset<4> bs("0000");

    bool result = bs.any();
    assert(!result);
  }
}

出力

参照