Open In App

bits.TrailingZeros16() 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 TrailingZeros16() function which is used to find the number of trailing zero bits in a and the result is 16 for a == 0. To access TrailingZeros16() function you need to add a math/bits package in your program with the help of the import keyword.

Syntax:

func TrailingZeros16(a uint16) int

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

Return Value: This function returns total number of trailing zero bits in a.

Example 1:




// Golang program to illustrate 
// bits.TrailingZeros16() Function
package main
  
import (
    "fmt"
    "math/bits"
)
  
// Main function
func main() {
  
    // Using TrailingZeros16() function
    a := bits.TrailingZeros16(15)
    fmt.Printf("Total number of trailing"+
            " zero bits in %d: %d", 15, a)
  
}


Output:

Total number of trailing zero bits in 15: 0

Example 2:




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


Output:

TrailingZeros16(0000000000001000)) := 3
TrailingZeros16(0000000000001101) := 0


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

Similar Reads