ds/int_list.go
2023-01-20 21:48:46 +01:00

8 lines
97 B
Go

package ds
type List[T any] interface {
Coll[T]
Indexable[int, T]
IndexedRemovable[int, T]
}