Trait polars_core::utils::IntoDynamicZip[][src]

pub trait IntoDynamicZip<I> where
    I: Iterator
{ fn into_dynamic_zip(self) -> DynamicZip<I>

Notable traits for DynamicZip<I>

impl<I, T> Iterator for DynamicZip<I> where
    I: Iterator<Item = T>, 
type Item = Vec<T>;
; }
Expand description

A trait to convert a value to a DynamicZip.

Required methods

fn into_dynamic_zip(self) -> DynamicZip<I>

Notable traits for DynamicZip<I>

impl<I, T> Iterator for DynamicZip<I> where
    I: Iterator<Item = T>, 
type Item = Vec<T>;
[src]

Implementations on Foreign Types

impl<I> IntoDynamicZip<I> for Vec<I> where
    I: Iterator
[src]

fn into_dynamic_zip(self) -> DynamicZip<I>

Notable traits for DynamicZip<I>

impl<I, T> Iterator for DynamicZip<I> where
    I: Iterator<Item = T>, 
type Item = Vec<T>;
[src]

Implementors