Open In App

bits.Reverse64() Function in Golang with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

Go language provides inbuilt support for bits to implement bit counting and manipulation functions for the predeclared unsigned integer types with the help of bits package. This package provides Reverse64() function which is used to find the reversed order of the value of a. To access Reverse64() function you need to add a math/bits package in your program with the help of the import keyword.

Syntax:

func Reverse64(a uint64) uint64

Parameters: This function takes one parameter of uint64 type, i.e., a.

Return Value: This function returns the value of a with its bits in reversed order.

Example 1:




// Golang program to illustrate bits.Reverse64() Function
package main
  
import (
    "fmt"
    "math/bits"
)
  
// Main function
func main() {
  
    // Using Reverse64() function
    a := bits.Reverse64(5)
    fmt.Printf("Reverse order of %d: %b", 5, a)
  
}


Output:

Reverse order of 5: 1010000000000000000000000000000000000000000000000000000000000000

Example 2 :




// Golang program to illustrate bits.Reverse64() Function
package main
  
import (
    "fmt"
    "math/bits"
)
  
// Main function
func main() {
  
    // Using Reverse64() function
    a1 := bits.Reverse64(9)
    fmt.Printf("Reverse64(%064b) := %b\n", 9, a1)
  
    a2 := bits.Reverse64(13)
    fmt.Printf("Reverse64(%064b) := %b\n", 13, a2)
  
}


Output:

Reverse64(0000000000000000000000000000000000000000000000000000000000001001) := 1001000000000000000000000000000000000000000000000000000000000000
Reverse64(0000000000000000000000000000000000000000000000000000000000001101) := 1011000000000000000000000000000000000000000000000000000000000000



Last Updated : 19 Apr, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads