Files
exercises-in-programming-style/06-the-one
Bruce Adams 5749c2c50f Enhance testing: run all executables
Add a #! line at the beginning of each of the existing Python programs
and change these files to be executable. This sets the stage for having
the test script blindly run anything that is executable, adding support
for testing many programming languages.
2013-09-24 22:09:30 -04:00
..
2013-09-22 11:11:08 -07:00
2013-09-24 22:09:30 -04:00

Style #6

Constraints:

  • Existence of an abstraction to which all others can be converted. This main abstraction provides an interface to chain abstractions independent of the types of values that are consumed and produced by those abstractions

  • Larger problem is solved as a pipeline of functions bound together by the single interface that chains them

Possible names:

  • The One
  • Monadic
  • The wrapper of all things
  • Imperative functional style