EitherSequence

extension EitherSequence
extension EitherSequence: Sequence
  • A type that provides the sequence’s iteration interface and encapsulates its iteration state.

    See more

    Declaration

    Swift

    public struct Iterator : IteratorProtocol
  • A type representing the sequence’s elements.

    Declaration

    Swift

    public typealias Element = A.Element
  • Returns an iterator over the elements of this sequence.

    Declaration

    Swift

    public func makeIterator() -> Iterator