C++ keyword: and_eq - cppreference.com

From cppreference.com

Usage

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';
}

Output:

See also