Add contains
This commit is contained in:
parent
5fc7f637b2
commit
62bafd9af7
@ -73,3 +73,16 @@ func (rb *RingBuffer) GetLastPosition() int {
|
|||||||
return rb.tail
|
return rb.tail
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (rb *RingBuffer) ContainsItem(item string) bool {
|
||||||
|
rb.mu.Lock()
|
||||||
|
defer rb.mu.Unlock()
|
||||||
|
|
||||||
|
for i := 0; i < rb.size; i++ {
|
||||||
|
index := (rb.head + i) % rb.size
|
||||||
|
if rb.buffer[index] == item {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user