bits.Len() Function in Golang with Examples Last Updated : 19 Apr, 2020 Comments Improve Suggest changes Like Article Like 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: C // 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: C // 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 Comment More infoAdvertise with us Next Article bits.Len() Function in Golang with Examples K Kirti_Mangal Follow Improve Article Tags : Go Language Golang-bits Similar Reads bits.Len8() Function in Golang with Examples 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 Len8() function which is used to find the minimum number of bits required to represent a and the result i 2 min read bits.Len32() Function in Golang with Examples 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 Len32() function which is used to find the minimum number of bits required to represent a and the result 2 min read bits.Len16() Function in Golang with Examples 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 Len16() function which is used to find the minimum number of bits required to represent a and the result 2 min read bits.Len64() Function in Golang with Examples 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 Len64() function which is used to find the minimum number of bits required to represent a and the result 2 min read bits.Rem() Function in Golang with Examples 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 Rem() function which is used to find the remainder of (h, l) divided by a. This function will panics if a 2 min read Like