1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 08:32:40 +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

13
collections/list.go Normal file
View File

@ -0,0 +1,13 @@
package collections
type List[T any] interface {
Add(T)
Delete(T)
Count() int
ToSlice() []T
}
type Queue interface{
}