MCPcopy Create free account
hub / github.com/MTG/essentia / inputTypes

Method inputTypes

src/essentia/algorithm.cpp:54–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52
53
54vector<const type_info*> Algorithm::inputTypes() const {
55 vector<const type_info*> types;
56 types.reserve(_inputs.size());
57 for (InputMap::const_iterator it = _inputs.begin(); it != _inputs.end(); ++it) {
58 types.push_back(&it->second->typeInfo());
59 }
60 return types;
61}
62
63vector<const type_info*> Algorithm::outputTypes() const {
64 vector<const type_info*> types;

Callers 1

computeMethod · 0.80

Calls 3

sizeMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected