Color::&

Color::&
inline friend const Color operator &(Color c1, Color c2);
Description

The operator & function calls the binary And method and returns the new color.

Parameters
Parameters 
Description 
Color c1 
The first (the destination) of two color parameters that is combined to form a new color (return value). 
Color c2 
The second (the source) of two color parameters that is combined to form a new color (return value). 
Return Value

A new Color created by calling And with the components of the two passed colors.

See Also