-
Notifications
You must be signed in to change notification settings - Fork 2
_ulong
bergsma edited this page Sep 26, 2014
·
5 revisions
Syntax
result = ulong value ;
ulong variable [= value] ;
Arguments
- list value
A value of any type.
Return Value
ulong result
- 0 to 4294967295 : A value from 0 to 4,294,967,295.
The STATUS variable is set to $ACKNOWLEDGE
When the argument is an array variable, all the elements in the array are converted, and the result will be a vector array Exceptions
-
%ARGUMENT: Invalid arguments. Usage: ulong variable [= value] ;
-
%IDENTIFIER: 'variable' argument is not a valid identifier, literal, or reference
Description
- None
Examples
put ulong ( -1 ) ; // == 4294967295
put ulong ( -2 ) ; // == 4294967294
put ulong (4294967295) ; //== 4294967295
put ulong (4294967296) ; //== 0
put ulong (4294967297) ; //== 1
Related Links