Signed-off-by: joshvanl <me@joshvanl.dev>
This commit is contained in:
joshvanl 2024-10-09 23:26:32 +01:00
parent 14f600482c
commit 45e23e402b
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ import "sync"
// Slice is a concurrent safe types slice
type Slice[T any] interface {
Add(...T) int
Add(items ...T) int
Len() int
Slice() []T
}