Structural design patterns
Martin McBride, 2021-10-07
Tags structural pattern
Categories design pattern

Structural design patterns control the relationships between objects. These include:
- Composite (where an object delegates its behaviour to one or more other objects).
- Decorator (which is used to modify the functionality of an object without changing the object itself or its interface).
If you found this article useful, you might be interested in the book Functional Programming in Python or other books by the same author.
Prev