Creates a new PageLazyStream instance.
Lazily filters entire pages instead of filtering each individual item.
PageLazyStream.Lazily applies a transformation function to entire pages instead of individual items.
PageLazyStream instance.Lazily takes the first n pages.
Number of pages to take.
PageLazyStream instance.StaticfromCreates a PageLazyStream from an async generator function.
PageLazyStream instance.
PageLazyStream: Processes entire pages lazily (instead of single items).
This class enables lazy, on-demand processing of paginated data sources. Instead of processing individual elements, it operates on entire pages, which is useful for efficient batch processing.
Features:
map(),filter(), andtake()at the page level.