Fortran Wiki
dshiftl

Description

dshiftl(i, j, shift) combines bits of i and j. The rightmost shift bits of the result are the leftmost shift bits of j, and the remaining bits are the rightmost bits of i.

Standard

Fortran 2008 and later

Class

Elemental function

Syntax

result = dshiftl(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

dshiftr