BigRational.Inequality Operator

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Inequality(BigRational, BigInteger) Determines if a rational number is not equal to another and returns the result.
Inequality(BigRational, BigRational) Determines if a rational number is not equal to another and returns the result.
Inequality(BigRational, Int32) Determines if a rational number is not equal to another and returns the result.

Inequality(BigRational, BigInteger) Operator

Determines if a rational number is not equal to another and returns the result.
C#
public static bool operator !=(
	BigRational left,
	BigInteger right
)

Parameters

left  BigRational
A rational number.
right  BigInteger
A rational number.

Return Value

Boolean
true if left is not equal to right; otherwise false.

Inequality(BigRational, BigRational) Operator

Determines if a rational number is not equal to another and returns the result.
C#
public static bool operator !=(
	BigRational left,
	BigRational right
)

Parameters

left  BigRational
A rational number.
right  BigRational
A rational number.

Return Value

Boolean
true if left is not equal to right; otherwise false.

Inequality(BigRational, Int32) Operator

Determines if a rational number is not equal to another and returns the result.
C#
public static bool operator !=(
	BigRational left,
	int right
)

Parameters

left  BigRational
A rational number.
right  Int32
A rational number.

Return Value

Boolean
true if left is not equal to right; otherwise false.

See Also