GO语言"math/bits"包中"RotateLeft64"函数的用法及代码示例。
用法:
func RotateLeft64(x uint64, k int) uint64
RotateLeft64 返回 x 向左旋转 (k mod 64) 位的值。要将 x 向右旋转 k 位,请调用 RotateLeft64(x, -k)。
此函数的执行时间不依赖于输入。
例子:
package main
import (
"fmt"
"math/bits"
)
func main() {
fmt.Printf("%064b\n", 15)
fmt.Printf("%064b\n", bits.RotateLeft64(15, 2))
fmt.Printf("%064b\n", bits.RotateLeft64(15, -2))
}
输出:
0000000000000000000000000000000000000000000000000000000000001111 0000000000000000000000000000000000000000000000000000000000111100 1100000000000000000000000000000000000000000000000000000000000011
相关用法
- GO RotateLeft32用法及代码示例
- GO RotateLeft8用法及代码示例
- GO RotateLeft16用法及代码示例
- GO Rows用法及代码示例
- GO RoundToEven用法及代码示例
- GO Round用法及代码示例
- GO RoundingMode用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
- GO ResponseRecorder用法及代码示例
- GO ReverseBytes64用法及代码示例
- GO ReverseBytes16用法及代码示例
- GO Regexp.ReplaceAllLiteralString用法及代码示例
- GO Regexp.FindStringSubmatch用法及代码示例
- GO Regexp.FindAllString用法及代码示例
- GO ReadMessage用法及代码示例
- GO Regexp.ExpandString用法及代码示例
- GO ResponseWriter用法及代码示例
- GO Regexp.FindAllStringSubmatch用法及代码示例
- GO Reverse用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 RotateLeft64。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。