structure/interface.go
2019-03-13 14:05:21 +08:00

10 lines
110 B
Go

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