| 183 | |
| 184 | template <typename ContextType> |
| 185 | void dumpOutputs(ContextType const& context, std::ostream& os) const |
| 186 | { |
| 187 | auto isOutput = [](Binding const& b) { return !b.isInput; }; |
| 188 | dumpBindings(context, isOutput, os); |
| 189 | } |
| 190 | |
| 191 | template <typename ContextType> |
| 192 | void dumpBindings(ContextType const& context, std::ostream& os) const |