xgo/objects/iterable.go

8 lines
169 B
Go
Raw Normal View History

2019-01-24 00:36:03 +03:00
package objects
// Iterable represents an object that has iterator.
type Iterable interface {
// Iterate should return an Iterator for the type.
Iterate() Iterator
}