remove unused PositiveSlice Preallocate
This commit is contained in:
parent
ce635cc2b1
commit
f1407fd045
@ -41,15 +41,3 @@ func (a *PositiveSlice[T]) Set(idx int, value T) {
|
|||||||
a.data[actualIdx] = value
|
a.data[actualIdx] = value
|
||||||
a.valid[actualIdx] = true
|
a.valid[actualIdx] = true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *PositiveSlice[T]) Preallocate(hi int) {
|
|
||||||
size := hi
|
|
||||||
|
|
||||||
// expand data array to actualIdx
|
|
||||||
newData := make([]T, size+1)
|
|
||||||
a.data = newData
|
|
||||||
|
|
||||||
// expand valid array to actualIdx
|
|
||||||
newValid := make([]bool, size+1)
|
|
||||||
a.valid = newValid
|
|
||||||
}
|
|
||||||
|
@ -130,8 +130,6 @@ func NewWavefrontComponent() *WavefrontComponent {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
//w.W.Preallocate(preallocateSize)
|
|
||||||
|
|
||||||
return w
|
return w
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user