public final class io.reactivex.internal.operators.observable.ObservableZipIterable<T, U, V> extends io.reactivex.Observable<V>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.observable.ObservableZipIterable
  super_class: io.reactivex.Observable
{
  final io.reactivex.Observable<? extends T> source;
    descriptor: Lio/reactivex/Observable;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/Observable<+TT;>;

  final java.lang.Iterable<U> other;
    descriptor: Ljava/lang/Iterable;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/lang/Iterable<TU;>;

  final io.reactivex.functions.BiFunction<? super T, ? super U, ? extends V> zipper;
    descriptor: Lio/reactivex/functions/BiFunction;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/BiFunction<-TT;-TU;+TV;>;

  public void <init>(io.reactivex.Observable<? extends T>, java.lang.Iterable<U>, io.reactivex.functions.BiFunction<? super T, ? super U, ? extends V>);
    descriptor: (Lio/reactivex/Observable;Ljava/lang/Iterable;Lio/reactivex/functions/BiFunction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.reactivex.internal.operators.observable.ObservableZipIterable this
        start local 1 // io.reactivex.Observable source
        start local 2 // java.lang.Iterable other
        start local 3 // io.reactivex.functions.BiFunction zipper
         0: .line 31
            aload 0 /* this */
            invokespecial io.reactivex.Observable.<init>:()V
         1: .line 34
            aload 0 /* this */
            aload 1 /* source */
            putfield io.reactivex.internal.operators.observable.ObservableZipIterable.source:Lio/reactivex/Observable;
         2: .line 35
            aload 0 /* this */
            aload 2 /* other */
            putfield io.reactivex.internal.operators.observable.ObservableZipIterable.other:Ljava/lang/Iterable;
         3: .line 36
            aload 0 /* this */
            aload 3 /* zipper */
            putfield io.reactivex.internal.operators.observable.ObservableZipIterable.zipper:Lio/reactivex/functions/BiFunction;
         4: .line 37
            return
        end local 3 // io.reactivex.functions.BiFunction zipper
        end local 2 // java.lang.Iterable other
        end local 1 // io.reactivex.Observable source
        end local 0 // io.reactivex.internal.operators.observable.ObservableZipIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lio/reactivex/internal/operators/observable/ObservableZipIterable<TT;TU;TV;>;
            0    5     1  source  Lio/reactivex/Observable<+TT;>;
            0    5     2   other  Ljava/lang/Iterable<TU;>;
            0    5     3  zipper  Lio/reactivex/functions/BiFunction<-TT;-TU;+TV;>;
    Signature: (Lio/reactivex/Observable<+TT;>;Ljava/lang/Iterable<TU;>;Lio/reactivex/functions/BiFunction<-TT;-TU;+TV;>;)V
    MethodParameters:
        Name  Flags
      source  
      other   
      zipper  

  public void subscribeActual(io.reactivex.Observer<? super V>);
    descriptor: (Lio/reactivex/Observer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // io.reactivex.internal.operators.observable.ObservableZipIterable this
        start local 1 // io.reactivex.Observer t
         0: .line 44
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableZipIterable.other:Ljava/lang/Iterable;
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            ldc "The iterator returned by other is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.util.Iterator
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         1: .line 45
            goto 6
        end local 2 // java.util.Iterator it
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3 /* e */
        start local 3 // java.lang.Throwable e
         3: .line 46
            aload 3 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         4: .line 47
            aload 3 /* e */
            aload 1 /* t */
            invokestatic io.reactivex.internal.disposables.EmptyDisposable.error:(Ljava/lang/Throwable;Lio/reactivex/Observer;)V
         5: .line 48
            return
        end local 3 // java.lang.Throwable e
        start local 2 // java.util.Iterator it
         6: .line 54
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            istore 3 /* b */
        start local 3 // boolean b
         7: .line 55
            goto 12
        end local 3 // boolean b
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 4 /* e */
        start local 4 // java.lang.Throwable e
         9: .line 56
            aload 4 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        10: .line 57
            aload 4 /* e */
            aload 1 /* t */
            invokestatic io.reactivex.internal.disposables.EmptyDisposable.error:(Ljava/lang/Throwable;Lio/reactivex/Observer;)V
        11: .line 58
            return
        end local 4 // java.lang.Throwable e
        start local 3 // boolean b
        12: .line 61
      StackMap locals: int
      StackMap stack:
            iload 3 /* b */
            ifne 15
        13: .line 62
            aload 1 /* t */
            invokestatic io.reactivex.internal.disposables.EmptyDisposable.complete:(Lio/reactivex/Observer;)V
        14: .line 63
            return
        15: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableZipIterable.source:Lio/reactivex/Observable;
            new io.reactivex.internal.operators.observable.ObservableZipIterable$ZipIterableObserver
            dup
            aload 1 /* t */
            aload 2 /* it */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableZipIterable.zipper:Lio/reactivex/functions/BiFunction;
            invokespecial io.reactivex.internal.operators.observable.ObservableZipIterable$ZipIterableObserver.<init>:(Lio/reactivex/Observer;Ljava/util/Iterator;Lio/reactivex/functions/BiFunction;)V
            invokevirtual io.reactivex.Observable.subscribe:(Lio/reactivex/Observer;)V
        16: .line 67
            return
        end local 3 // boolean b
        end local 2 // java.util.Iterator it
        end local 1 // io.reactivex.Observer t
        end local 0 // io.reactivex.internal.operators.observable.ObservableZipIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lio/reactivex/internal/operators/observable/ObservableZipIterable<TT;TU;TV;>;
            0   17     1     t  Lio/reactivex/Observer<-TV;>;
            1    2     2    it  Ljava/util/Iterator<TU;>;
            6   17     2    it  Ljava/util/Iterator<TU;>;
            3    6     3     e  Ljava/lang/Throwable;
            7    8     3     b  Z
           12   17     3     b  Z
            9   12     4     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
           6     7       8  Class java.lang.Throwable
    Signature: (Lio/reactivex/Observer<-TV;>;)V
    MethodParameters:
      Name  Flags
      t     
}
Signature: <T:Ljava/lang/Object;U:Ljava/lang/Object;V:Ljava/lang/Object;>Lio/reactivex/Observable<TV;>;
SourceFile: "ObservableZipIterable.java"
NestMembers:
  io.reactivex.internal.operators.observable.ObservableZipIterable$ZipIterableObserver
InnerClasses:
  final ZipIterableObserver = io.reactivex.internal.operators.observable.ObservableZipIterable$ZipIterableObserver of io.reactivex.internal.operators.observable.ObservableZipIterable