Versions in this module Expand all Collapse all v0 v0.1.11 Oct 3, 2023 v0.1.10 Oct 2, 2023 Changes in this version + type Walker struct + func New(revisitElements ...bool) *Walker[T] + func (w *Walker[T]) HasNext() bool + func (w *Walker[T]) Next() (nextElement T) + func (w *Walker[T]) Push(nextElement T) (walker *Walker[T]) + func (w *Walker[T]) PushAll(nextElements ...T) (walker *Walker[T]) + func (w *Walker[T]) PushFront(nextElements ...T) (walker *Walker[T]) + func (w *Walker[T]) Reset() + func (w *Walker[T]) StopWalk() + func (w *Walker[T]) WalkStopped() bool