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 <ianj@wgrids.com>2012-09-06 17:04:46 +0400
committerIan Johnson <ianj@wgrids.com>2012-09-06 17:04:46 +0400
commit8fd65828ba0335192f79274f4cfddda430ab5280 (patch)
tree897ee8adf4fdf8d21c3284ae82e1171fb13fca15
parentd8d9b7d76ed789ba42e35e1c0c0ffb81fa711eb9 (diff)
parentc8635c0fbb9d4a8bdb0f14eb6eb2d47ea0363dae (diff)
Merge branch 'master' of github.com:ianj-als/pypeline
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4e9a6bf..4e53141 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