Files
base/pkg/array/enumerator.go
2026-04-10 18:25:21 +03:30

8 lines
105 B
Go

package array
type Enumerator[T any] interface {
Next() bool
Current() (*T, error)
Destroy() error
}