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>
13 lines
400 B
Markdown
13 lines
400 B
Markdown
# Structural Patterns
|
|
|
|
Structural patterns explain how to assemble objects and classes into larger structures while keeping these structures flexible and efficient.
|
|
|
|
## Patterns
|
|
|
|
- [Adapter](adapter/README.md)
|
|
- [Bridge](bridge/README.md)
|
|
- [Composite](composite/README.md)
|
|
- [Decorator](decorator/README.md)
|
|
- [Facade](facade/README.md)
|
|
- [Flyweight](flyweight/README.md)
|
|
- [Proxy](proxy/README.md)
|