|
Base220Modulus Operator
|
This stuff is still in the planning stages. Any questions or Comments are welcome. [This is preliminary documentation and is subject to change.]
Implements the operator %.
Namespace:
Furcadia.Text
Assembly:
FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 59
Syntax public static Base220 operator %(
Base220 n1,
Base220 n2
)
Public Shared Operator Mod (
n1 As Base220,
n2 As Base220
) As Base220
Dim n1 As Base220
Dim n2 As Base220
Dim returnValue As Base220
returnValue = (n1 Mod n2)
public:
static Base220^ operator %(
Base220^ n1,
Base220^ n2
)
static let inline (%)
n1 : Base220 *
n2 : Base220 : Base220
Parameters
- n1
- Type: Furcadia.TextBase220
The n1. - n2
- Type: Furcadia.TextBase220
The n2.
Return Value
Type:
Base220
The result of the operator.
See Also