structure/interface.go

10 lines
110 B
Go
Raw Normal View History

package structure
type IteratorNext interface {
Next() bool
}
type IteratorPrev interface {
Prev() bool
}