Bitmask.Equality
Operator in Bitmask
Declaration
public static bool operator ==(Bitmask lhs, Bitmask rhs)
Description
Determines if two bitmasks are equal.
Parameters
lhs | The first bitmask to compare. |
rhs | The second bitmask to compare. |
Returns
bool | True if the bitmasks are equal, false otherwise. |
Overload
Declaration
public static bool operator ==(Bitmask lhs, int rhs)
Description
Determines if two bitmasks are equal.
Parameters
lhs | The first bitmask to compare. |
rhs | The second bitmask to compare. |
Returns
bool | True if the bitmasks are equal, false otherwise. |
Overload
Declaration
public static bool operator ==(int lhs, Bitmask rhs)
Description
Determines if two bitmasks are equal.
Parameters
lhs | The first bitmask to compare. |
rhs | The second bitmask to compare. |
Returns
bool | True if the bitmasks are equal, false otherwise. |