MAKDWR

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > Numeric functions >

MAKDWR

 

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 = MAKDWR(LowPart, HighPart)

 

Returns

 

Number. An unsigned 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

 

Numeric functions

 

Examples