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

Function repr

src/IECorePython/BinaryFrameListBinding.cpp:53–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51
52template<>
53std::string repr( BinaryFrameList &x )
54{
55 object item( FrameListPtr( x.getFrameList() ) );
56 std::stringstream s;
57
58 s << "IECore.BinaryFrameList( ";
59 s << call_method< std::string >( item.ptr(), "__repr__" );
60 s << " ) ";
61
62 return s.str();
63}
64
65void bindBinaryFrameList()
66{

Callers

nothing calls this directly

Calls 1

getFrameListMethod · 0.45

Tested by

no test coverage detected