Trait smtree::traits::Mergeable[][src]

pub trait Mergeable {
    fn merge(lch: &Self, rch: &Self) -> Self;
}
Expand description

Trait for merging two child nodes to extract the parent node in the SMT.

Required methods

A function to merge two child nodes as the parent node in the SMT.

Implementors