10 lines
110 B
Go
10 lines
110 B
Go
package structure
|
|
|
|
type IteratorNext interface {
|
|
Next() bool
|
|
}
|
|
|
|
type IteratorPrev interface {
|
|
Prev() bool
|
|
}
|