Remove unused torrent_pending_pieces.go

Unfortunately github.com/elliotchance/orderedmap is still used in ./analysis, so no deps are removed.
This commit is contained in:
Matt Joiner 2021-12-01 11:27:16 +11:00
parent ba592028e5
commit 54d529aac0
1 changed files with 0 additions and 40 deletions

View File

@ -1,40 +0,0 @@
package torrent
import (
"github.com/elliotchance/orderedmap"
"github.com/anacrolix/missinggo/v2/prioritybitmap"
)
type stableSet struct {
om *orderedmap.OrderedMap
}
func (s stableSet) Has(bit int) bool {
_, ok := s.om.Get(bit)
return ok
}
func (s stableSet) Delete(bit int) {
s.om.Delete(bit)
}
func (s stableSet) Len() int {
return s.om.Len()
}
func (s stableSet) Set(bit int) {
s.om.Set(bit, struct{}{})
}
func (s stableSet) Range(f func(int) bool) {
for e := s.om.Front(); e != nil; e = e.Next() {
if !f(e.Key.(int)) {
break
}
}
}
func priorityBitmapStableNewSet() prioritybitmap.Set {
return stableSet{om: orderedmap.NewOrderedMap()}
}