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
Raw Normal View History

2023-01-08 23:03:19 -07:00
package iterator
type Iterator[ELEMENT_TYPE any] interface {
Length() int
Next() ELEMENT_TYPE
}