pub trait LeafSample {
    fn leaf_sample(a: &Self, b: &Self) -> Self;
}
Expand description

Define a method for merging two leaf references into a single leaf, to allow sampling leaf data over an entire branch.

Required Methods

Merge two leaf references into a single leaf.

Implementors