1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 00:22:41 +08:00
Files
go-mixed/collections/list.go
2022-05-04 23:46:48 +08:00

13 lines
126 B
Go

package collections
type List[T any] interface {
Add(T)
Delete(T)
Count() int
ToSlice() []T
}
type Queue interface{
}