Operator Inequality
Inequality(Maybe<T>, Maybe<T>)
Performs inequality checking on Maybe{T} instances.
Declaration
public static bool operator !=(Maybe<T> m1, Maybe<T> m2)
Parameters
| Type | Name | Description |
|---|---|---|
| Maybe<T> | m1 | A Maybe{T} instance. |
| Maybe<T> | m2 | A Maybe{T} instance. |
Returns
| Type | Description |
|---|---|
| System.Boolean | True if the instances are not equal, otherwise false. |
Remarks
Inverts the result of an == comparison.