1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 00:22:41 +08:00
This commit is contained in:
2022-05-04 23:46:48 +08:00
parent 5f9203404b
commit 917bad7494
6 changed files with 83 additions and 63 deletions

View File

@ -3,7 +3,7 @@ package collections
import "testing"
func TestCircleQueue(t *testing.T) {
q := NewCircleQueue(10)
q := NewCircleQueue[string](10)
t.Log("Size:", q.Size())
for i := 0; i < 10; i++ {