MCPcopy Create free account
hub / github.com/PlotJuggler/PlotJuggler / itemDescriptor

Method itemDescriptor

pj_runtime/src/CatalogModel.cpp:282–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280}
281
282std::optional<CatalogItem> CatalogModel::itemDescriptor(const QString& key) const {
283 const auto it = impl_->items.find(key);
284 if (it == impl_->items.end()) {
285 return std::nullopt;
286 }
287 return it->second;
288}
289
290std::optional<double> CatalogModel::scalarValueAt(const QString& key, double display_seconds) const {
291 if (impl_->session == nullptr) {

Callers 3

onCatalogItemsDroppedMethod · 0.80
TESTFunction · 0.80

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by 1

TESTFunction · 0.64