ISLL(x,n) returns the result of logically shifting x to
the left by n places, and padding on the right with zeroes.
 >>-ISLL(x,n)---------------------------------------------------><
|
- x
- Expression. x must have a computational type.
- n
- Expression. n must have a computational type.
If x is REAL FIXED BIN(p,0) and:
- x is SIGNED, then the result is SIGNED REAL FIXED BIN(M,0).
- x is UNSIGNED, the result is UNSIGNED REAL FIXED BIN(M+1,0).
Otherwise, x is converted to SIGNED REAL FIXED BIN(M,0)
and the result has the same attributes.
The result is undefined if n is negative or if n is
greater than M.
Note:
Unlike RAISE2(x,n), ISLL(x,n) can have a different
sign than x does.
|
This information center is powered by Eclipse technology. (http://www.eclipse.org)