Metadata-Version: 2.1
Name: fpinpy
Version: 1.0.0
Summary: Python Functional Library
Home-page: https://github.com/metzenseifner/py_fpinpy
Author: Jonathan L. Komar
Author-email: jonathan.komar@uibk.ac.at
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# Description

This library provides a functional programming interface for Python.
In particular, the Result monad handles the three most common cases in
programming:

1. computation succeeded
2. computation failed
3. computation valid, but resulted in nothing

# Design

It is based on the work by Pierre-Yves Saumont in his books,
*Functional Programming in Java* (2017) and The Joy of Kotlin (2019).


