Next: , Previous: DSHIFTL, Up: Intrinsic Procedures


8.67 DSHIFTR — Combined right shift

Description:
DSHIFTR(I, J, SHIFT) combines bits of I and J. The leftmost SHIFT bits of the result are the rightmost SHIFT bits of I, and the remaining bits are the leftmost bits of J.
Standard:
Fortran 2008 and later
Class:
Elemental function
Syntax:
RESULT = DSHIFTR(I, J, SHIFT)
Arguments:

I Shall be of type INTEGER.
J Shall be of type INTEGER, and of the same kind as I.
SHIFT Shall be of type INTEGER.

Return value:
The return value has same type and kind as I.
See also:
DSHIFTL