inline Size<T> ClampedToWidth(T w) const;
ClampedToWidth clamps the current Width to an alternate value. The lesser value is chosen. The following expression may be used to represent the result:
(result.Width, result.Height) = (min(Width, w), Height)
A new Size whose Height is equal to that of the current size, and whose Width represents the clamp of the current Width with a passed value.
ClampedTo ClampedToHeight