ash performs the arithmetic shift operation on the binary
representation of integer, which is treated as if it were binary.
ash shifts integer arithmetically left by count bit
positions if count is positive,
or right count bit positions if count is negative.
The shifted value of the same sign
as integer is returned.
Mathematically speaking, ash performs the computation
floor(integer· 2count).
Logically, ash
moves all of the bits in integer to the left,
adding zero-bits at the right, or moves them to the right,
discarding bits.
ash is defined to behave as if integer were
represented in two's complement form, regardless of
how integers are represented internally.