MCPcopy Create free account
hub / github.com/Profactor/cv-plot / find

Method find

CvPlot/inc/CvPlot/core/DrawableDeque.h:66–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64
65template<typename SomeDrawable>
66SomeDrawable* DrawableDeque::find() {
67 auto it = DrawableDeque::findIterator<SomeDrawable>();
68 if (it != _drawables.end()) {
69 return static_cast<SomeDrawable*>(it->get());
70 }
71 return nullptr;
72}
73
74template<typename SomeDrawable>
75SomeDrawable* DrawableDeque::find(const std::string &name) {

Callers

nothing calls this directly

Calls 2

endMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected