| 199 | } |
| 200 | |
| 201 | ranges::any_view<Output> Cluster::getOutputs() const { |
| 202 | return getPossibleAddresses(clusterNum, clusterAccess) | ranges::views::transform([](auto && address) { return address.getOutputs(); }) | ranges::views::join; |
| 203 | } |
| 204 | |
| 205 | ranges::any_view<blocksci::Input> Cluster::getInputs() const { |
| 206 | return getPossibleAddresses(clusterNum, clusterAccess) | ranges::views::transform([](auto && address) { return address.getInputs(); }) | ranges::views::join; |
nothing calls this directly
no test coverage detected