operator & method

int operator &(
  1. OptInFlags item
)

Implementation

int operator & (OptInFlags item){
  return value & item.value;
}