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-09-06 16:44:04 +0400
committerIan Johnson <ian.johnson@appliedlanguage.com>2012-09-06 16:44:04 +0400
commitc8635c0fbb9d4a8bdb0f14eb6eb2d47ea0363dae (patch)
treec940587809eaf0b4b81923b9eb8c90e5af9b6de4
parentf520988e5a9b3e3cb59ca82ed111485836c3100b (diff)
Update README.md
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index c7b4e5b..d07cca2 100644
--- a/README.md
+++ b/README.md
@@ -145,9 +145,15 @@ Construct a wire based on a *conversion* dictionary. Assuming that dictionaries
helpers.cons_split_wire()
+Constructs a wire that splits a single input into a pair.
+
#### Constructing an Unsplit Wire
- helpers.cons_unsplit_wire(unsplit_func)
+ helpers.cons_unsplit_wire(unsplit_function)
+
+Constructs a wire that takes a pair and combines them into a single value specified by the `unsplit_function`. The unsplit function takes to arguments: the top and bottom values.
+
+ unsplit_function :: b -> c -> d
#### Wire Up Two Pipeline Components