| 222 | } |
| 223 | |
| 224 | std::unordered_map<std::string, int> getOutputBindings() const |
| 225 | { |
| 226 | auto isOutput = [](Binding const& b) { return !b.isInput; }; |
| 227 | return getBindings(isOutput); |
| 228 | } |
| 229 | |
| 230 | std::unordered_map<std::string, int> getBindings() const |
| 231 | { |