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

Function repr

src/IECorePython/ExclusionFrameListBinding.cpp:53–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51
52template<>
53std::string repr( ExclusionFrameList &x )
54{
55 std::stringstream s;
56
57 s << "IECore.ExclusionFrameList( ";
58
59 object item( FrameListPtr( x.getFrameList() ) );
60
61 s << call_method< std::string >( item.ptr(), "__repr__" );
62
63 s << ", ";
64
65 item = object( x.getExclusionFrameList() );
66
67 s << call_method< std::string >( item.ptr(), "__repr__" );
68
69 s << " ) ";
70
71 return s.str();
72}
73
74void bindExclusionFrameList()
75{

Callers

nothing calls this directly

Calls 2

getExclusionFrameListMethod · 0.80
getFrameListMethod · 0.45

Tested by

no test coverage detected