pub trait Union<T: VertexType, H: Heuristic> {
// Required method
fn union_sets(
representative: &mut [T],
heuristic: &mut [usize],
a: T::IdentifierType,
b: T::IdentifierType,
rng: &mut H::RngProvider,
);
}Expand description
Union operation
Required Methods§
fn union_sets( representative: &mut [T], heuristic: &mut [usize], a: T::IdentifierType, b: T::IdentifierType, rng: &mut H::RngProvider, )
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.