1
1
mirror of https://github.com/thma/LtuPatternFactory.git synced 2025-01-07 11:57:50 +03:00
This commit is contained in:
thma 2018-12-02 21:57:58 +01:00
commit 0a13bcd5cf

View File

@ -38,7 +38,7 @@ I think this kind of exposition could be helpful if you are either:
* [Dependency Injection -> Parameter Binding](#dependency-injection---parameter-binding)
* [Adapter -> Function Composition](#adapter---function-composition)
* [Template Method -> type class default functions](#template-method---type-class-default-functions)
* Factory -> TBD
* [Creational Patterns](#creational-patterns)
* [Abstract Factory -> functions as data type values](#abstract-factory---functions-as-data-type-values)
* [Builder -> record syntax, smart constructor](#builder---record-syntax-smart-constructor)
* [Some related links](#some-interesting-links)
@ -1342,7 +1342,7 @@ So the Monoid type class definition forms a *template* where the default impleme
[Full Sourcecode for this section](https://github.com/thma/LtuPatternFactory/blob/master/src/TemplateMethod.hs)
### TBD: Factory -> partial application
### Creational Patterns
#### Abstract Factory -> functions as data type values