7 lines
99 B
Go
7 lines
99 B
Go
package iterator
|
|
|
|
type Iterator[ELEMENT_TYPE any] interface {
|
|
Length() int
|
|
Next() ELEMENT_TYPE
|
|
}
|