Lazy streams using generators

Lazy streams using generators 1.0

Lazy streams using generators 1.0 Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 316
  • Released: Jun 7, 2007

Lazy streams using generators 1.0 Description

This class allows you to use generators as more list-like streams. The chief advantage is that it is impossible to iterate through a generator more than once, while a stream can be re-used like a list.

Lazy streams using generators 1.0 Keywords

Lazy streams using generators Bookmark

Hyperlink code:
Hyperlink for Forum code:

Lazy streams using generators 1.0 Script Download Notice

Top 4 Download periodically updates information of Lazy streams using generators 1.0 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. Lazy streams using generators 1.0 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

List Generator Monad Combinators

The List monad in Haskell has many uses, including parsing ... It works with all iterables, and returns a generator rather than a list in order to preserve a lazy semantics. ...
Python

ASTVisitor generator

... visitor, along with comments in each function that list that node type's attributes. ...
Python

Buffered Stream with Multiple Forward Only Readers

This script provides a buffered stream that supports multiple forward-only readers. The buffer enables ... values that have already been read from the stream. Values that are no longer accessible by any reader are cleared from the buffer. ...
Python

List iterator with advance and regress

The basic iterator for a list doesn't allow one to skip forward (except with "continue"), ... all), nor does it behave well if the list is modified while it is being traversed. This script is NOT the be-all and end-all of improved iterators, but it gives a few ideas of how a better one ...
Python

A generator for any number of for loop

Python has a number of nice methods to handle 'for' loops. However, the situation often arises where you have a large number of nested loops. This script allows you to reduces the number of loops to one. ...
Python