inline Size<T> ExpandedTo(const Size<T> & sz) const; inline Size<T> ExpandedTo(T w, T h) const;
ExpandedTo expands the current size to passed values (unions them) 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, w]), max(Height, [sz.Height, h]))
A Size reference to the current string whose components represent the union of two sizes.