operator & method

int operator &(
  1. dynamic other
)
inherited

Implementation

int operator &(dynamic other) {
  if (other == null) {
    return raw;
  }
  if (other is int) {
    return raw & other;
  }
  return raw & other.raw;
}