MCPcopy Create free account
hub / github.com/Kitware/VTK / GetAllKeys

Function GetAllKeys

Utilities/Maintenance/VisualizeModuleDependencies.py:165–172  ·  view source on GitHub ↗

Return all the modules in the tree as a set.

(tree)

Source from the content-addressed store, hash-verified

163 return result
164
165def GetAllKeys(tree):
166 '''
167 Return all the modules in the tree as a set.
168 '''
169 modules = set()
170 for key in tree:
171 modules = set(list(modules) + [key] + list(GetAllKeys(tree[key])))
172 return modules
173
174def MakeEdgeList(t):
175 '''

Callers 1

MakeGraphFunction · 0.85

Calls 2

setFunction · 0.50
listClass · 0.50

Tested by

no test coverage detected