inline const Size<T>& operator |=(const Size<T> & sz);
The operator |= function determines the union of two sizes by comparing their components respectively. The greater component is chosen. The following expression may be used to represent the result:
(Width, Height) = (max(Width, sz.Width), max(Height, sz.Height))
A Size reference to the current string whose components represent the union of two sizes.