Trait array_tool::vec::Union [−][src]
pub trait Union {
fn union(&self, other: Self) -> Self;
}
Expand description
Create a union
between two vectors.
Returns a new vector by joining with other, excluding any duplicates and preserving
the order from the original vector.