Versions in this module Expand all Collapse all v1 v1.3.0 Sep 7, 2022 Changes in this version + type Iterator interface + Next func() bool + Value func() T + func Empty() Iterator[T] + type MapIterator struct + func Map(i Iterator[T], m func(v T) T) MapIterator[T] + func (m MapIterator[T]) Next() bool + func (m MapIterator[T]) Value() T