unzip method

(IndexedSeq<A>, IndexedSeq<B>) unzip()

Implementation

(IndexedSeq<A>, IndexedSeq<B>) unzip() =>
    (iseqviews.Map(this, (a) => a.$1), iseqviews.Map(this, (a) => a.$2));