Documentation ¶ Index ¶ type Iterator Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Iterator ¶ type Iterator[C any] interface { // HasNext return whether this iterator has next value HasNext() bool // Next returns the next item and error Next() (C, error) } Iterator represents the interface for iterator Source Files ¶ View all Source files iterator.go Click to show internal directories. Click to hide internal directories.