MCPcopy Create free account
hub / github.com/ImageEngine/cortex / values

Method values

python/IECore/SubstitutedDict.py:86–91  ·  view source on GitHub ↗
( self, substituted=True )

Source from the content-addressed store, hash-verified

84 return self.__dict.keys()
85
86 def values( self, substituted=True ) :
87
88 if substituted :
89 return [ self.get( k ) for k in self.__dict.keys() ]
90 else :
91 return self.__dict.values()
92
93 def items( self, substituted=True ) :
94

Callers 2

itemsMethod · 0.95
testMethod · 0.95

Calls 2

getMethod · 0.95
keysMethod · 0.45

Tested by 1

testMethod · 0.76