Jump to content

captainjin

Members
  • Posts

    1
  • Joined

  • Last visited

    Never

captainjin's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. The "bitshift" is used to perform a bitwise shift on the input elements. When the input is 0, the results always return the value of 2^n, no matter what the shift size n is. e.g., bitshift(0, 4)=16 (10000) bitshift(0, 8)=256 (100000000) the behavior is same as the result for 1: bitshift(1, 4)=16 (10000)
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.