Skip to content

fbrusch/pmap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PMAP

pmap is a multithreaded map functional operator that, differently from other implementations, keeps the ordering of the input list.

Usage examples:

In [1]: from pmap import pmap

In [2]: pmap (lambda x:x*x, range(10))
Out[2]: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]

Releases

No releases published

Packages

No packages published

Languages