Bitwise operations: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
Line 167: Line 167:


=={{header|ABAP}}==
=={{header|ABAP}}==
This works in ABAP 7.40 and above. The missing shift operations have been implemented with arithmetic. The built in string functions shift_left and shift_right which have the parameter circular were used to implement the rotate operations.
This works in ABAP 7.40 and above. The missing arithmetic shift operations have been implemented with arithmetic, wheras the logical shift and the rotate operations have been implemented using the built in string functions shift_left and shift_right.


<lang ABAP>
<lang ABAP>