mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-22 10:57:24 +08:00
13 lines
149 B
Go
13 lines
149 B
Go
// -*- go -*-
|
|
|
|
package main
|
|
|
|
import (
|
|
"math/bits"
|
|
)
|
|
|
|
// @Test 15 -2 = 3221225475
|
|
func main(a, b uint32) uint32 {
|
|
return bits.RotateLeft32(a, -2)
|
|
}
|