Size::==

Size::==
inline bool operator ==(const Size<T> & sz) const;
Description

The operator == function determines the equality of two sizes. The following expression may be used to represent the result:

   (sz1.Width == sz1.Width) && (sz1.Height == sz2.Height)
Parameters
Parameters 
Description 
const Size<T> & sz 
The passed sizes whose components are compared to those of the first size. 
Return Value

A Boolean value of 1 (true) if the two sizes are equal and 0 (false) if they are not.