llvm::BitmaskEnumDetail::operator!

Return true if no bits are set in the bitmask enum value.

Synopsis

Declared in <llvm/ADT/BitmaskEnum.h>

template<
    typename E,
    typename = void>
requires is_bitmask_enum<E>::value
constexpr
bool
operator!(E Val);

Return Value

True when Val is the zero enumerator.

Parameters

NameDescription
ValBitmask enumeration value to test.