imod
|
The imod function divides two integers and returns the remainder expressed
as an integer. The imod function does not perform type checking or type
conversion on the operands.
Usage The imod built-in function is used to determine if an integer will divide
evenly into another number (the remainder will be zero in this case).
Some software vendors supply function libraries may have a function named
remainder that performs the same action as imod. An alternate function,
is the modi function, which performs type checking and type conversion on
numeric operands.
(imod int1 int2) The remainder after the integer division. The result is expressed as an integer.
Expression:
Arguments
Name
Type
Description Argument: int1 Integer
An Integer dividend. Argument: int2 Integer
The Integer divisor.
Returns:
Here are a number of links to Lambda coding examples which contain this instruction in various use cases.
Here are the links to the data types of the function arguments.
Number | Integer |
Here are also a number of links to functions having arguments with any of these data types.
Analytic Information Server (AIS)AIS Component Systems
|