This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/iterator/iterator.go

7 lines
99 B
Go

package iterator
type Iterator[ELEMENT_TYPE any] interface {
Length() int
Next() ELEMENT_TYPE
}