8 lines
105 B
Go
8 lines
105 B
Go
package array
|
|
|
|
type Enumerator[T any] interface {
|
|
Next() bool
|
|
Current() (*T, error)
|
|
Destroy() error
|
|
}
|