pymel.util.propertycache

Inheritance diagram of propertycache

class propertycache(func)

Class for creating properties where the value is initially calculated then stored.

Intended for use as a descriptor, ie:

class MyClass(object):

@propertycache def aValue(self):

return calcValue()

c = MyClass() c.aValue

Previous topic

pymel.util.path

Next topic

pymel.util.universalmethod

Core

Core Modules

Other Modules

This Page