bitror(X;Y)
  
  Returns the given 32-bit integer rotated right by a specified number of bits.
Syntax
bitror(X;Y)Input
| Argument | Type | Description | 
|---|---|---|
| X | integer | A scalar value or the name of a column 
 | 
| Y | integer | A scalar value or the name of a column 
 | 
Return Value
Returns an integer value corresponding to 
      X rotated right by
          Y bits.Note: 
X is treated as if it were
        unsigned.If X and/or Y is N/A, they are handled according to their
        internal representation like any other number.
