We could create an Input type to use as the Edge type for our petgraph::Graph. Something like:
pub enum Input {
Regular,
SideChain(Buffer),
}
I'm still not clear on how to add support for this to the Node API - will have to do some research and come back to this. Any ideas appreciated!
See side-chaining's wikipedia entry.