Better constraints for #09

This commit is contained in:
Crista Lopes
2013-11-28 11:21:17 -08:00
parent e0cf163926
commit 2f9bc1c53d

View File

@@ -3,17 +3,17 @@ Style #9
Constraints: Constraints:
- Existence of an abstraction to which all others can be converted. This - Existence of an abstraction to which all functions can be converted. This
main abstraction provides an interface to chain abstractions main abstraction provides an interface to (1) wrap around values, so that they
independent of the types of values that are consumed and produced by become the abstraction; and (2) bind wrapped values to functions, so
those abstractions to establish sequences of functions.
- Larger problem is solved as a pipeline of functions bound together - Larger problem is solved as a pipeline of functions bound together
by the single interface that chains them by the single interface that chains them.
Possible names: Possible names:
- The One - The One
- Monadic - Monadic Identity
- The wrapper of all things - The wrapper of all things
- Imperative functional style - Imperative functional style