C++ keyword: and
Min standard notice:
alternative operators: as an alternative for &&
# Example
int main()
{
static_assert((false and false) == false);
static_assert((false and true) == false);
static_assert((true and false) == false);
static_assert((true and true) == true);
}