Update README.md

Better wording for constraints
This commit is contained in:
crista
2013-12-02 08:45:27 -08:00
parent 82ca8e540e
commit 7dded55286

View File

@@ -3,13 +3,17 @@ Style #9
Constraints:
- Existence of an abstraction to which all functions can be converted. This
main abstraction provides an interface to (1) wrap around values, so that they
become the abstraction; and (2) bind wrapped values to functions, so
to establish sequences of functions.
- Existence of an abstraction to which values can be
converted.
- This abstraction provides operations to (1) wrap
around values, so that they become the abstraction; (2) bind
itself to functions, so to establish sequences of functions;
and (3) unwrap the value, so to examine the final result.
- Larger problem is solved as a pipeline of functions bound
together, with unwrapping happening at the end.
- Larger problem is solved as a pipeline of functions bound together
by the single interface that chains them.
Possible names: