mirror of
https://github.com/rjNemo/design-patterns
synced 2026-06-06 02:26:40 +00:00
5 lines
176 B
Python
5 lines
176 B
Python
"""
|
|
Lets you fit more objects into the available amount of RAM by sharing common
|
|
parts of state between multiple objects instead of keeping all of the data in
|
|
each object.
|
|
"""
|