Operator_Modulo Method
Used to overload the Mod function, providing custom functionality.
Syntax
Notes
Create an Operator_Modulo function in a class to specify the functionality of the Mod operator for that class.
In the function, the Self instance the left operand and the other operand is passed as a parameter.
Example
Using the Vector class (see Operator_Add) with two Integer elements, x and y, we define an Operator_Modulo function that returns the remainder of the division of the sum of the Self instance by the passed instance.
Function Operator_Modulo (rhs as Vector) as Integer
Dim a, b as Integer
a= Self.x + Self.y
b=rhs.x + rhs.y
Return a Mod b
Dim a, b as Integer
a= Self.x + Self.y
b=rhs.x + rhs.y
Return a Mod b
See Also
Mod operator; Operator_ModuloRight function.