operator | method

SearchType operator |(
  1. SearchType other
)

Implementation

SearchType operator |(SearchType other) {
  return SearchType(value | other.value);
}