BigInteger.LessThanOrEqual Operator

Definition

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

Overload List

LessThanOrEqual(BigInteger, BigInteger) Returns whether a BigInteger is less than or equal to another and returns the result.
LessThanOrEqual(BigInteger, Int32) Returns whether an integer is less than or equal to a BigInteger.
LessThanOrEqual(Int32, BigInteger) Returns whether an integer is less than or equal to a BigInteger.

LessThanOrEqual(BigInteger, BigInteger) Operator

Returns whether a BigInteger is less than or equal to another and returns the result.
C#
public static bool operator <=(
	BigInteger left,
	BigInteger right
)

Parameters

left  BigInteger
The first number to compare.
right  BigInteger
The second number to compare.

Return Value

Boolean
true if left is less than or equal to right; otherwise false.

Implements

IComparisonOperators<TSelf, TOther, TResult>.LessThanOrEqual(TSelf, TOther)

LessThanOrEqual(BigInteger, Int32) Operator

Returns whether an integer is less than or equal to a BigInteger.
C#
public static bool operator <=(
	BigInteger left,
	int right
)

Parameters

left  BigInteger
The first number to compare.
right  Int32
The second number to compare.

Return Value

Boolean
true if left is less than or equal to right; otherwise false.

LessThanOrEqual(Int32, BigInteger) Operator

Returns whether an integer is less than or equal to a BigInteger.
C#
public static bool operator <=(
	int left,
	BigInteger right
)

Parameters

left  Int32
The first number to compare.
right  BigInteger
The second number to compare.

Return Value

Boolean
true if left is less than or equal to right; otherwise false.

See Also