C++ keyword: and_eq
Min standard notice:
alternative operators: as an alternative for &=
# Example
#include <bitset>
#include <iostream>
int main()
{
std::bitset<4> mask("1100");
std::bitset<4> val("0111");
val and_eq mask;
std::cout << val << '\n';
}