Skip to content
bergsma edited this page Sep 26, 2014 · 5 revisions

#ulong

###Convert to an character value or create an long variable.

Syntax

result = ulong value ;
ulong variable [= value] ; 

Arguments

  1. 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 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

long

Clone this wiki locally