Combine

Trait Combine 

Source
pub trait Combine<A, B> {
    type Output;

    // Required method
    fn combine(&mut self, src: A, tgt: B) -> Result<Self::Output>;
}
Expand description

Combine defines a common interface for merging two edges in a hypergraph.

Required Associated Types§

Required Methods§

Source

fn combine(&mut self, src: A, tgt: B) -> Result<Self::Output>

Implementors§