| 99 | } |
| 100 | |
| 101 | std::vector<int> Pattern::getEditedStepIndices() const |
| 102 | { |
| 103 | auto endIt = steps_.cbegin() + static_cast<int>(size_); |
| 104 | return utils::findIndicesIf(steps_.cbegin(), endIt, |
| 105 | [](const Step& step) { return step.hasEvent(); }); |
| 106 | } |
| 107 | |
| 108 | std::set<int> Pattern::getRegisteredInstruments() const |
| 109 | { |
no test coverage detected