Test additional content header

OptionTInequality Operator

Compares two Options to determine inequality.

Definition

Namespace: Fluent.Calculations.Primitives.BaseTypes
Assembly: Fluent.Calculations.Primitives (in Fluent.Calculations.Primitives.dll) Version: 1.1.0-aplha
public static Condition operator !=(
	Option<T>? left,
	Option<T>? right
)

Parameters

left  OptionT
The value to compare with right.
right  OptionT
The value to compare with left.

Return Value

Condition
Condition instance true if left is not equal to right; otherwise, false

Implements

IEqualityOperatorsTSelf, TOther, TResultInequality(TSelf, TOther)

Remarks

Comparision is based on underlying Enum value.

See Also