• Returns the number x shifted displacement bits to the left. The number displacement may be any representable integer. Negative displacements shift to the right. In any direction, vacant bits are filled with zeros. In particular, displacements with absolute values higher than 31 result in zero (all bits are shifted out).

    For positive displacements, the following equality holds:

    assert(bit32.lshift(b, displacement) == (b * 2^displacement) % 2^32)

    Parameters

    • x: number
    • displacement: number

    Returns number