Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The function xpfGetRandomInteger returns a random INTEGER data type.

Arguments

...

Return Value

...

 

TypeNameComment
INTEGERaRandomIntegerA random INTEGER number

Options

...

 

Example

...

Code Block
languagecpp
<Missing Example>  FUNCTION getRandomInteger : SET OF INTEGER;
     LOCAL
       randInt    : INTEGER;
       randIntSet : SET OF INTEGER;
     END_LOCAL;
     ON_ERROR_DO;
       xpxPrintf('\nError.');
       xpxThrow;
    END_ON_ERROR_DO;
    
    REPEAT i := 1 TO 10;
      randInt := xpfGetRandomInteger();
      randIntSet ++ randInt;
      xpxPrintf('\nrrandIntSet[%d] : %lu',i,randInt);
    END_REPEAT;
    
    RETURN(randIntSet);
  END_FUNCTION;

 

See also

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
cqllabel = "extension_schema" and parent = "5636522"

...