Skip to content

Commit 2589771

Browse files
committed
Remove bit func section from doc
1 parent 6db72c6 commit 2589771

3 files changed

Lines changed: 3 additions & 30 deletions

File tree

set.go

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
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
//

set_1_10.go

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
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
//

set_1_9.go

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
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
//

0 commit comments

Comments
 (0)