mirror of
https://github.com/rjNemo/design-patterns
synced 2026-06-06 02:26:40 +00:00
* chore: create behavioral design patterns package * doc: add chain of responsibility documentation * doc: add behavioral package table of content * doc: edit general doc * add code example Co-authored-by: Ruidy <r.nemausat@empfohlen.de>
11 lines
351 B
Markdown
11 lines
351 B
Markdown
# Creational Patterns
|
|
|
|
Creational patterns provide various object creation mechanisms, which increase flexibility and reuse of existing code.
|
|
|
|
## Patterns
|
|
|
|
- [Factory Method](factory_method/README.md)
|
|
- [Abstract Factory](abstract_factory/README.md)
|
|
- [Builder](builder/README.md)
|
|
- [Prototype](prototype/README.md)
|
|
- [Singleton](singleton/README.md)
|