Rotate V left by R bit positions.
Declared in <llvm/ADT/bit.h>
template<typename T>
requires std::is_unsigned_v<T>
[[nodiscard]]
constexpr
T
rotl(
T V,
int R);
| Name | Description |
|---|---|
| V | Unsigned value to rotate. |
| R | Number of bit positions to rotate left. |