double

A double 64 bit precision value.

Optional Parameters

  • Value range constraint - double( min, max )

An optional range can be specified to a double in order to specify a restriction on permitted values. The values for min and max can be a numeric value or * to indicate wildcard maximum or minimum permitted value.

Examples

  • double(10,100) A number between 10 and 100
  • double(*,0) A number between lowest double supported by target language and 0.
  • double(10,*) A number between 10 and highest double supported by target language