BigRational.GreaterThan Operator

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

GreaterThan(BigRational, BigInteger) Determines if a rational number is greater than another and returns the result.
GreaterThan(BigRational, BigRational) Determines if a rational number is greater than another and returns the result.
GreaterThan(BigRational, Int32) Determines if a rational number is greater than another and returns the result.

GreaterThan(BigRational, BigInteger) Operator

Determines if a rational number is greater than 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 greater than right; otherwise false.

GreaterThan(BigRational, BigRational) Operator

Determines if a rational number is greater than 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 greater than right; otherwise false.

GreaterThan(BigRational, Int32) Operator

Determines if a rational number is greater than 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 greater than right; otherwise false.

See Also