Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Iterator ¶
type Iterator interface {
// Next returns the next item from the iterator. io.EOF is returned when no more items are left.
Next() (item string, err error)
}
Iterator returns items
func NewListIterator ¶
NewListIterator returns a new iterator from a list of items.
Source Files
¶
- iterator.go
Click to show internal directories.
Click to hide internal directories.