mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 00:22:41 +08:00
13 lines
126 B
Go
13 lines
126 B
Go
package collections
|
|
|
|
type List[T any] interface {
|
|
Add(T)
|
|
Delete(T)
|
|
Count() int
|
|
ToSlice() []T
|
|
}
|
|
|
|
|
|
type Queue interface{
|
|
|
|
} |