2024-04-13 06:00:22 +02:00
|
|
|
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
|
|
|
// All rights reserved.
|
|
|
|
|
2024-03-30 06:56:12 +01:00
|
|
|
// iterator.go
|
|
|
|
package expr
|
|
|
|
|
|
|
|
type Iterator interface {
|
|
|
|
Next() (item any, err error) // must return io.EOF after the last item
|
2024-04-26 04:30:43 +02:00
|
|
|
Current() (item any, err error)
|
2024-03-30 06:56:12 +01:00
|
|
|
Index() int
|
|
|
|
}
|