Rotate Left with Carry
- 更新时间2023-02-17
- 阅读时长2分钟
Rotate Left with Carry
Rotates each bit in the specified input (value in) one bit to the left (from least significant to most significant bit), inserts carry in the low-order bit, and returns the most significant bit.
Inputs/Outputs

carry
New low-order bit of value in.

value in
An input to this operation.
This input must be an integer and cannot be an array or cluster.

most significant bit carry out
Former high-order bit of value in.

value
New value.