Versions in this module Expand all Collapse all v0 v0.0.1 Oct 7, 2023 Changes in this version + type Iterator interface + type SliceIterator struct + func NewIterator(items []T) *SliceIterator[T] + func (u *SliceIterator[T]) GetNext() (T, bool) + func (u *SliceIterator[T]) GetNextOrDefault(d T) T + func (u *SliceIterator[T]) HasNext() bool