<< Click to Display Table of Contents >> Navigation: ThinBASIC Core Language > BuiltIn Functions > Numeric functions > MAKLNG |
Description
Take the low-order 16-bits from each of two integer-class variables and combine to produce a single 32-bit value.
Syntax
n = MAKLNG(LowPart, HighPart)
Returns
Number. A signed 32-bit value
Parameters
Name |
Type |
Optional |
Meaning |
LowPart |
Number |
No |
A numeric expression (internally transformed into a 32 bit number) whose lowest part will be taken |
HighPart |
Number |
No |
A numeric expression (internally transformed into a 32 bit number) whose highest part will be taken |
Remarks
Restrictions
See also
Examples