File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11// +build !go1.9
22
3- // Package bit provides a bit array implementation
4- // and some utility bit functions.
5- //
6- // Bit functions
7- //
8- // The bit functions count leading and trailing zero bits
9- // and the number of non-zero bits in a 64-bit word.
10- // The functions use bitwise operations instead of looping
11- // over individual bits. This gives a considerable speedup,
12- // as all bits within the word are processed in parallel.
3+ // Package bit provides a bit array implementation.
134//
145// Bit set
156//
Original file line number Diff line number Diff line change 11// +build go1.10
22
3- // Package bit provides a bit array implementation
4- // and some utility bit functions.
5- //
6- // Bit functions
7- //
8- // The bit functions count leading and trailing zero bits
9- // and the number of non-zero bits in a 64-bit word.
10- // The functions use bitwise operations instead of looping
11- // over individual bits. This gives a considerable speedup,
12- // as all bits within the word are processed in parallel.
3+ // Package bit provides a bit array implementation.
134//
145// Bit set
156//
Original file line number Diff line number Diff line change 11// +build go1.9
22// +build !go1.10
33
4- // Package bit provides a bit array implementation
5- // and some utility bit functions.
6- //
7- // Bit functions
8- //
9- // The bit functions count leading and trailing zero bits
10- // and the number of non-zero bits in a 64-bit word.
11- // The functions use bitwise operations instead of looping
12- // over individual bits. This gives a considerable speedup,
13- // as all bits within the word are processed in parallel.
4+ // Package bit provides a bit array implementation.
145//
156// Bit set
167//
You can’t perform that action at this time.
0 commit comments