package collections // ๅˆ—่กจ type List[T any] interface { Add(T) Delete(T) Count() int ToSlice() []T } // ้˜Ÿๅˆ— type Queue[T any] interface { Put(T) Poll() T Peek() T Size() int IsEmpty() bool }