Trait ppv_lite86::types::VZip

source ·
pub trait VZip<V> {
    // Required method
    fn vzip(self) -> V;
}
Expand description

Combine single vectors into a multi-lane vector.

Required Methods§

source

fn vzip(self) -> V

Implementors§

source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,