# Functions
NewPeekable initializes a peekable iterator.
NewPeekable2 initializes a peekable iterator.
NewResumable wraps seq into stateful form so that the iterator can be break-ed and resumed.
NewResumable2 wraps seq into stateful form so that the iterator can be break-ed and resumed.
# Structs
No description provided by the author
Chan adds IntoIter method to a receive only channel.
CsvReader adds IntoIter2 method to [*csv.Reader].
Heap adds IntoIter method to a heap.Interface.
JsonDecoder adds IntoIter2 to [*json.Decoder].
ListAll adds Iter method to *list.ListAll.
ListBackward adds Iter method to *list.List.
ListElementAll adds Iter method to *list.Element.
ListElementBackward adds Iter method to *list.Element.
MapSortedFunc adds Iter2 to map[K]V.
SqlRows adds IntoIter2 to [*sql.Rows].
Peekable adds the read-ahead ability to [iter.Seq][V].
Peekable2 adds the read-ahead ability to [iter.Seq2][K, V].
Range adds Iter method to the pair of 2 Numeric values.
Repeatable generates an iterator that generates V N times.
Repeatable2 generates an iterator that generates pairs of K and V N times.
RepeatableFunc generates an iterator that generates value returned from FnV N times.
RepeatableFunc2 generates an iterator that generates pairs of value that FnK and FnV return N times.
Resumable converts the input [iter.Seq][V] into stateful form by calling [iter.Pull].
Resumable2 converts the input [iter.Seq2][K, V] into stateful form by calling [iter.Pull2].
RingAll adds Iter method to *ring.RingAll.
RingBackward adds Iter method to *ring.Ring.
No description provided by the author
SqlRows adds IntoIter2 to [*sql.Rows].
SyncMap adds Iter2 method that merely calls [sync.Map.Range].
XmlDecoder adds IntoIter2 to [*xml.Decoder].
# Type aliases
MapAll adds Iter2 method to map[K]V that merely calling [maps.All].
MapSorted adds Iter2 to map[K]V where K is basic ordered type.
SliceAll adds Iter and Iter2 methods to slice of any element E.
SliceBackward adds Iter and Iter2 methods to slice of any element E.