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

Function compoundParameterKeys

src/IECorePython/CompoundParameterBinding.cpp:103–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101}
102
103static boost::python::list compoundParameterKeys( const CompoundParameter &o )
104{
105 boost::python::list result;
106 CompoundParameter::ParameterVector::const_iterator it;
107 for( it = o.orderedParameters().begin(); it!=o.orderedParameters().end(); it++ )
108 {
109 result.append( (*it)->name() );
110 }
111 return result;
112}
113
114static boost::python::list compoundParameterValues( const CompoundParameter &o )
115{

Callers

nothing calls this directly

Calls 4

appendMethod · 0.80
beginMethod · 0.45
endMethod · 0.45
nameMethod · 0.45

Tested by

no test coverage detected