Trait linera_witty::Merge
source · pub trait Merge<Other>: Sized {
type Output;
}
Expand description
Merging of two heterogeneous lists, resulting in a new heterogeneous list where every element is
of type Either<Left, Right>
, where Left
is an element from the current list and Right
is
an element from the Other
list.
Required Associated Types§
Object Safety§
This trait is not object safe.