memoized

digraph inheritance2b73f87d02 { bgcolor=transparent; rankdir=UD; ratio=compress; size="8.0, 12.0"; "memoized" [URL="#taurus.core.util.decorator.memoize.memoized",color=dodgerblue1,fillcolor=white,fontcolor=black,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.5,shape=box,style=rounded,target="_top",tooltip="Decorator. Caches a function's return value each time it is called."]; }
class memoized(func)[source]

Bases: object

Decorator. Caches a function’s return value each time it is called. If called later with the same arguments, the cached value is returned (not reevaluated).