|
|
|
|
|
by dymk
2677 days ago
|
|
What happens when your values are computed? Or expensive to compute, and your map starts to get big? E.g.: {'a': foo(), 'b': bar() }[...]
If foo() or bar() ever introduce side-effects or become expensive, you're gonna have a hell of a time figuring out what's going wrong. |
|