Versions in this module Expand all Collapse all v0 v0.1.0 Dec 9, 2022 Changes in this version + type Iterator struct + NextBatchFunc NextBatchFunction[T] + func (iter *Iterator[T]) Error() error + func (iter *Iterator[T]) Next(ctx context.Context) bool + func (iter *Iterator[T]) Value() *T + type NextBatchFunction func(ctx context.Context) (items []T, hasMoreItems bool, err error) + func RateLimit(limiter *rate.Limiter, nextBatchFunction NextBatchFunction[T]) NextBatchFunction[T] + func StaticSlice(s []T) NextBatchFunction[T]