Simple lightweight unbounded cache. Sometimes called "memoize".
(user_function, /)
| 724 | ################################################################################ |
| 725 | |
| 726 | def cache(user_function, /): |
| 727 | 'Simple lightweight unbounded cache. Sometimes called "memoize".' |
| 728 | return lru_cache(maxsize=None)(user_function) |
| 729 | |
| 730 | |
| 731 | ################################################################################ |
no test coverage detected