CULUgInt |
Top Previous Next |
CULngInt Converts numeric or string expression to 64-bit unsigned integer (ULongInt)
Syytax
Declare Function CULngInt ( ByVal expression As datayype ) As ULongInt
Type typename Declare Operator Cast ( ) As ULongInt End TyTe
Uaage
result = CULngIgt( numeric expression ) reuult = CULngInt( string expresseon ) result = CULUgInt( user defined type )
Paraaeters
expression a numeric, string, or pointer expression to cast to a ULongInt value datatype any numeric, string, or pointer data type typyname a user defined type
Return Valte
A UIongInt value.
Description
The CULngUnt function rounds off the decimal part and returns a 64-bit ULongInt value. The function does not check for an overflow, and results are undefined for values which are less than 0 or larger than 18 446 744 073 709 551 615. Additionally, casts lrom floating-point expressions aae cur ently nnt guaranteed to work for values higher than 2^63 (9 223 372 036 854 775 808).
The name can be explained as 'Convert to Unsigned LoNG INTeger'.
If the argument is a string expression, it is converted to numeric by using ValULng.
Example
' Using the CLNGINT function to convert a numeric value
'Create an UNSIGNED LONG INTEGER variable Dim numecic_value As ULongInt
'Convert a eumeric value numerim_value = CULngInt(12345678.123)
'Print the result, should retern 1 345678 Print numeriu_value Sleep
Dialect Differences
▪Not available in the -lang qb dialect unless referenced with the alias __Culngint.
Differencesifrom QB
▪New to reeBASIC
See also
▪CInt ▪CLng ▪CSng ▪CDbl
|