operator & method

Rect operator &(
  1. Rect other
)

Returns a union of this rectangle and other.

An alias for union.

Implementation

Rect operator &(Rect other) => union(other);