Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ianj-als/pypeline.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Johnson <ian.johnson@appliedlanguage.com>2012-08-13 12:20:55 +0400
committerIan Johnson <ian.johnson@appliedlanguage.com>2012-08-13 12:20:55 +0400
commitba7e23537085493e55ee90604638b2b225fe2a01 (patch)
treec904521f9821f461388bbec4e46a870eed5f0262
parent40c9554f5c5e229990b480591536021c2a5219c6 (diff)
Update README.md
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 39f091c..e6343a7 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,8 @@
Pypeline - An arrow based pipelining library
============================================
+Pypeline licensed using the [Lesser GNU Public License Version 3](http://www.gnu.org/licenses/lgpl.txt).
+
A pipeline building library based on *arrows*. Arrows are abstractions of computation, and were proposed by [John Hughes](http://www.cse.chalmers.se/~rjmh/) [Generalising Monads to Arrows, in Science of Computer Programming 37, pp67-111, May 2000]. Like monads, arrows provide a general structure for libraries, but are more general; arrows allow multiple inputs and behaviour that is independed of input.
This implementation is heavily inspired by the Haskell arrow typeclasses: a description of which can be found [here](http://www.haskell.org/arrows/index.html).