Patch for concurrent iterator & others (onto v1.11.6) #386

Closed
roysc wants to merge 1565 commits from v1.11.6-statediff-v5 into master
Showing only changes of commit a1cb7282b0 - Show all commits

View File

@ -163,7 +163,7 @@ func (q *LazyQueue) PopItem() interface{} {
return i
}
// Remove removes removes the item with the given index.
// Remove removes the item with the given index.
func (q *LazyQueue) Remove(index int) interface{} {
if index < 0 {
return nil