namespace std {
constexpr byte& operator&=(byte& l, byte r) noexcept;
}
概要
byte
型のオブジェクトに対して、ビット論理積の複合代入をする。
効果
以下の式と等価の効果をもつ:
return l = l & r;
例外
投げない
例
#include <cassert>
#include <cstddef>
int main()
{
std::byte a{0b0000'0011};
std::byte b{0b0000'0101};
a &= b;
assert(static_cast<unsigned char>(a) == 0b0000'0001);
}
13
#include <cassert>
#include <cstddef>
int main()
{
std::byte a{0b0000'0011};
std::byte b{0b0000'0101};
a &= b;
assert(static_cast<unsigned char>(a) == 0b0000'0001);
}
出力
バージョン
言語
- C++17
処理系
- Clang: 5.0 ✅
- GCC: 7.1 ✅
- Visual C++: ??