Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.75 KB

File metadata and controls

32 lines (25 loc) · 1.75 KB

Flyweight — where it lives outside this repo

Cited, real implementations to study (or point an agent at) when designing or reviewing sharing/interning code.

Python standard library

Major ecosystems

What to notice across all of them

Every production flyweight shares only immutable values, and none of them expose the pooled object for mutation. And each one earned its place with a measurement — interning pays at corpus/column scale, not at 52 cards.