initial commit
This commit is contained in:
7
pkg/array/enumerator.go
Normal file
7
pkg/array/enumerator.go
Normal file
@@ -0,0 +1,7 @@
|
||||
package array
|
||||
|
||||
type Enumerator[T any] interface {
|
||||
Next() bool
|
||||
Current() (*T, error)
|
||||
Destroy() error
|
||||
}
|
||||
Reference in New Issue
Block a user