Open In App

bits.Len() Function in Golang with Examples

Last Updated : 19 Apr, 2020
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 Len() function which is used to find the minimum number of bits required to represent a and the result is 0 for a == 0. To access Len() function you need to add a math/bits package in your program with the help of the import keyword.

Syntax:

 func Len(a uint) int

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

Return Value: This function returns the minimum number of bits required to represent a.

Example 1:




// Golang program to illustrate bits.Len() Function
  
package main
  
import (
    "fmt"
    "math/bits"
)
  
// Main function
func main() {
  
    // Using Len() function
    a := bits.Len(3)
    fmt.Printf("The minimum number of bits "+
        "required to represent %d: %d", 3, a)
  
}


Output:

The minimum number of bits required to represent 3: 2

Example 2:




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


Output:

Len(10) = 2
Len(1100) = 4


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads