summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/d5/tengo/objects/iterable.go
blob: e431d3d7555835bf4890d62ca013f11d1f58486e (plain) (blame)
1
2
3
4
5
6
7
package objects

// Iterable represents an object that has iterator.
type Iterable interface {
	// Iterate should return an Iterator for the type.
	Iterate() Iterator
}