
An iterator version of map should be available for large sets of data. -- Edward Lesmes

On Thu, Feb 09, 2012 at 11:40:11AM -0500, Edward Lesmes wrote:
An iterator version of map should be available for large sets of data.
itertools.imap Oleg. -- Oleg Broytman http://phdru.name/ phd@phdru.name Programmers don't die, they just GOSUB without RETURN.

On Thu, Feb 9, 2012 at 11:40 AM, Edward Lesmes <ehlesmes@gmail.com> wrote:
An iterator version of map should be available for large sets of data.
The python time machine strikes again. In python 2, this is available as itertools.imap. In python 3, this is the default behavior of the map() function. -- Jerry

On Thu, Feb 09, 2012 at 11:40:11AM -0500, Edward Lesmes wrote:
An iterator version of map should be available for large sets of data.
itertools.imap Oleg. -- Oleg Broytman http://phdru.name/ phd@phdru.name Programmers don't die, they just GOSUB without RETURN.

On Thu, Feb 9, 2012 at 11:40 AM, Edward Lesmes <ehlesmes@gmail.com> wrote:
An iterator version of map should be available for large sets of data.
The python time machine strikes again. In python 2, this is available as itertools.imap. In python 3, this is the default behavior of the map() function. -- Jerry
participants (4)
-
Edward Lesmes
-
Jerry Hill
-
Mathias Panzenböck
-
Oleg Broytman