8 lines
97 B
Go
8 lines
97 B
Go
|
package ds
|
||
|
|
||
|
type List[T any] interface {
|
||
|
Coll[T]
|
||
|
Indexable[int, T]
|
||
|
IndexedRemovable[int, T]
|
||
|
}
|