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-14 13:51:14 +0400
committerIan Johnson <ian.johnson@appliedlanguage.com>2012-08-14 13:51:14 +0400
commit80924004f239507a529ff08e80a4faed8561f7d3 (patch)
tree7922fa1973440847f3595e97c36627782a2bc188 /README.md
parentb9729b7b73381b8272bf89cf43b5cbfd8b849f0c (diff)
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 23 insertions, 1 deletions
diff --git a/README.md b/README.md
index f7f0c71..ee37ae3 100644
--- a/README.md
+++ b/README.md
@@ -52,4 +52,26 @@ There are no rules for creating your pipelines. Pipelines, pipeline components,
### Pipeline Functions
#### `helpers.cons_pipeline(input_wire, component, output_wire)`
-> Construct a pipeline from a component and two wires. The input wire shall convert a real world input into the expected input for the component, and the output wire shall convert the output from the component into an expected real world value. The funtion returns a `core.arrows.KleisliArrow` object that represents the pipeline. \ No newline at end of file
+> Construct a pipeline from a component and two wires. The input wire shall convert a real world input into the expected input for the component, and the output wire shall convert the output from the component into an expected real world value. The funtion returns a `core.arrows.KleisliArrow` object that represents the pipeline.
+
+#### `helpers.run_pipeline(pipeline, input, state)`
+
+#### `helpers.eval_pipeline(pipeline, input, state)`
+
+#### `helpers. exec_pipeline(pipeline, input, state)`
+
+### Pipeline Component Functions
+
+#### `helpers.cons_function_component(function, input_forming_function = None, output_forming_function = None, state_mutator = None)
+
+### `helpers.cons_subprocess_component(process_pipe, input_forming_function, output_forming_function, state_mutator = None)
+
+### Wire Functions
+
+#### `helpers.cons_wire(schema_conv_function)`
+
+#### `helpers.cons_dictionary_wire(conversions)`
+
+#### `helpers.wire_components(component_one, component_two, wire)`
+
+