Metadata-Version: 1.1
Name: LambdaX
Version: 0.2
Summary: A lambda replacement which is shorter, pickle-able, and cooler.
Home-page: https://github.com/erezsh/LambdaX
Author: Erez Shinan
Author-email: erezshin@gmail.com
License: MIT
Download-URL: https://github.com/erezsh/LambdaX/tarball/master
Description: 
            LambdaX is a composition class. It's a lambda replacement which is shorter, pickle-able, and cooler.
        
            LambdaX has two main features:
        
            It acts as an identity function ( so X(object) == object, etc. )
            When performing operations on it, it returns a new class that acts as a corresponding function.
        
            Example:
                >>> map( X+2, [1, 2, 3] )
                [3, 4, 5]
        
                >>> head, tail = X[0], X[1:]
                >>> (head(tail))([1,2,3])
            
Keywords: x lambda
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: General
Classifier: License :: OSI Approved :: MIT License
