Method equ
equ(BigRational, BigRational)
Compares the BigRational value a with the BigRational value b for equality.
Declaration
public bool equ(BigRational a, BigRational b)
Parameters
| Type | Name | Description |
|---|---|---|
| BigRational | a | A BigRational value as first value. |
| BigRational | b | A BigRational value as second value. |
Returns
| Type | Description |
|---|---|
| System.Boolean | true if the values are equal, otherwise false. |
equ(UInt32, UInt32)
Compares the values at index a and b as absolute indices in the stack for equality.
Declaration
public bool equ(uint a, uint b)
Parameters
| Type | Name | Description |
|---|---|---|
| System.UInt32 | a | Absolute index of a stack entry. |
| System.UInt32 | b | Absolute index of a stack entry. |
Returns
| Type | Description |
|---|---|
| System.Boolean | true if the values are equal, otherwise false. |
Remarks
see: mark() for absolute indices.
equ(UInt32, BigRational)
Compares the value at index a as absolute index in the stack with the BigRational value b for equality.
Declaration
public bool equ(uint a, BigRational b)
Parameters
| Type | Name | Description |
|---|---|---|
| System.UInt32 | a | Absolute index of a stack entry. |
| BigRational | b | A BigRational value as second value. |
Returns
| Type | Description |
|---|---|
| System.Boolean | true if the values are equal, otherwise false. |
Remarks
see: mark() for absolute indices.