Trait Zippablepub

Source
:trait(pub) Zippable
  .zip ( (Self a) (Self b)  (Self (Pair a b)) )
Description

Trait for collections that can be combined element-wise.

Required Methods

.zip ( (Self a) (Self b) (Self (Pair a b)) )

Pair elements positionally; the result has the length of the shorter input. ( (Self a) (Self b) -> (Self (Pair a b)) )

Implementors

impl Zippable for Vec