ZipToLongest3Sequence

public struct ZipToLongest3Sequence <Sequence1: Sequence, Sequence2: Sequence, Sequence3: Sequence>
    : IteratorProtocol, Sequence

Lazy sequence zipping three Sequence values together to the longest of the three sequences, filling in the others with the given fill1, fill2, and fill3 values.

  • Declaration

    Swift

    public mutating func next() -> (Sequence1.Element, Sequence2.Element, Sequence3.Element)?