long¶
64 bit long value.
Optional Parameters
- Value range constraint -
long( min, max )
An optional range can be specified to a
long
in order to specify a restriction on permitted values. The values formin
andmax
can be a numeric value or*
to indicate wildcard maximum or minimum permitted value.Examples
long(10,100)
A number between 10 and 100long(*,0)
A number between -263 (min 64 bit number) and 0.long(10,*)
A number between 10 and 263-1 (max 64 bit number)