Skip to content

Commit

Permalink
Remove bit func section from doc
Browse files Browse the repository at this point in the history
  • Loading branch information
korthaj committed Mar 13, 2018
1 parent 6db72c6 commit 2589771
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 30 deletions.
11 changes: 1 addition & 10 deletions set.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
// +build !go1.9

// Package bit provides a bit array implementation
// and some utility bit functions.
//
// Bit functions
//
// The bit functions count leading and trailing zero bits
// and the number of non-zero bits in a 64-bit word.
// The functions use bitwise operations instead of looping
// over individual bits. This gives a considerable speedup,
// as all bits within the word are processed in parallel.
// Package bit provides a bit array implementation.
//
// Bit set
//
Expand Down
11 changes: 1 addition & 10 deletions set_1_10.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
// +build go1.10

// Package bit provides a bit array implementation
// and some utility bit functions.
//
// Bit functions
//
// The bit functions count leading and trailing zero bits
// and the number of non-zero bits in a 64-bit word.
// The functions use bitwise operations instead of looping
// over individual bits. This gives a considerable speedup,
// as all bits within the word are processed in parallel.
// Package bit provides a bit array implementation.
//
// Bit set
//
Expand Down
11 changes: 1 addition & 10 deletions set_1_9.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
// +build go1.9
// +build !go1.10

// Package bit provides a bit array implementation
// and some utility bit functions.
//
// Bit functions
//
// The bit functions count leading and trailing zero bits
// and the number of non-zero bits in a 64-bit word.
// The functions use bitwise operations instead of looping
// over individual bits. This gives a considerable speedup,
// as all bits within the word are processed in parallel.
// Package bit provides a bit array implementation.
//
// Bit set
//
Expand Down

0 comments on commit 2589771

Please sign in to comment.