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

  final java.lang.Iterable<? extends io.reactivex.ObservableSource<? extends T>> sourcesIterable;
    descriptor: Ljava/lang/Iterable;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/lang/Iterable<+Lio/reactivex/ObservableSource<+TT;>;>;

  final io.reactivex.functions.Function<? super java.lang.Object[], ? extends R> combiner;
    descriptor: Lio/reactivex/functions/Function;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Function<-[Ljava/lang/Object;+TR;>;

  final int bufferSize;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  final boolean delayError;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  public void <init>(io.reactivex.ObservableSource<? extends T>[], java.lang.Iterable<? extends io.reactivex.ObservableSource<? extends T>>, io.reactivex.functions.Function<? super java.lang.Object[], ? extends R>, int, );
    descriptor: ([Lio/reactivex/ObservableSource;Ljava/lang/Iterable;Lio/reactivex/functions/Function;IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // io.reactivex.internal.operators.observable.ObservableCombineLatest this
        start local 1 // io.reactivex.ObservableSource[] sources
        start local 2 // java.lang.Iterable sourcesIterable
        start local 3 // io.reactivex.functions.Function combiner
        start local 4 // int bufferSize
        start local 5 // boolean delayError
         0: .line 35
            aload 0 /* this */
            invokespecial io.reactivex.Observable.<init>:()V
         1: .line 39
            aload 0 /* this */
            aload 1 /* sources */
            putfield io.reactivex.internal.operators.observable.ObservableCombineLatest.sources:[Lio/reactivex/ObservableSource;
         2: .line 40
            aload 0 /* this */
            aload 2 /* sourcesIterable */
            putfield io.reactivex.internal.operators.observable.ObservableCombineLatest.sourcesIterable:Ljava/lang/Iterable;
         3: .line 41
            aload 0 /* this */
            aload 3 /* combiner */
            putfield io.reactivex.internal.operators.observable.ObservableCombineLatest.combiner:Lio/reactivex/functions/Function;
         4: .line 42
            aload 0 /* this */
            iload 4 /* bufferSize */
            putfield io.reactivex.internal.operators.observable.ObservableCombineLatest.bufferSize:I
         5: .line 43
            aload 0 /* this */
            iload 5 /* delayError */
            putfield io.reactivex.internal.operators.observable.ObservableCombineLatest.delayError:Z
         6: .line 44
            return
        end local 5 // boolean delayError
        end local 4 // int bufferSize
        end local 3 // io.reactivex.functions.Function combiner
        end local 2 // java.lang.Iterable sourcesIterable
        end local 1 // io.reactivex.ObservableSource[] sources
        end local 0 // io.reactivex.internal.operators.observable.ObservableCombineLatest this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    7     0             this  Lio/reactivex/internal/operators/observable/ObservableCombineLatest<TT;TR;>;
            0    7     1          sources  [Lio/reactivex/ObservableSource;
            0    7     2  sourcesIterable  Ljava/lang/Iterable<+Lio/reactivex/ObservableSource<+TT;>;>;
            0    7     3         combiner  Lio/reactivex/functions/Function<-[Ljava/lang/Object;+TR;>;
            0    7     4       bufferSize  I
            0    7     5       delayError  Z
    Signature: ([Lio/reactivex/ObservableSource<+TT;>;Ljava/lang/Iterable<+Lio/reactivex/ObservableSource<+TT;>;>;Lio/reactivex/functions/Function<-[Ljava/lang/Object;+TR;>;IZ)V
    MethodParameters:
                 Name  Flags
      sources          
      sourcesIterable  
      combiner         
      bufferSize       
      delayError       

  public void subscribeActual(io.reactivex.Observer<? super R>);
    descriptor: (Lio/reactivex/Observer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=2
        start local 0 // io.reactivex.internal.operators.observable.ObservableCombineLatest this
        start local 1 // io.reactivex.Observer observer
         0: .line 49
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableCombineLatest.sources:[Lio/reactivex/ObservableSource;
            astore 2 /* sources */
        start local 2 // io.reactivex.ObservableSource[] sources
         1: .line 50
            iconst_0
            istore 3 /* count */
        start local 3 // int count
         2: .line 51
            aload 2 /* sources */
            ifnonnull 13
         3: .line 52
            bipush 8
            anewarray io.reactivex.Observable
            astore 2 /* sources */
         4: .line 53
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableCombineLatest.sourcesIterable:Ljava/lang/Iterable;
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 5
            goto 11
      StackMap locals: io.reactivex.internal.operators.observable.ObservableCombineLatest io.reactivex.Observer io.reactivex.ObservableSource[] int top java.util.Iterator
      StackMap stack:
         5: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.reactivex.ObservableSource
            astore 4 /* p */
        start local 4 // io.reactivex.ObservableSource p
         6: .line 54
            iload 3 /* count */
            aload 2 /* sources */
            arraylength
            if_icmpne 10
         7: .line 55
            iload 3 /* count */
            iload 3 /* count */
            iconst_2
            ishr
            iadd
            anewarray io.reactivex.ObservableSource
            astore 6 /* b */
        start local 6 // io.reactivex.ObservableSource[] b
         8: .line 56
            aload 2 /* sources */
            iconst_0
            aload 6 /* b */
            iconst_0
            iload 3 /* count */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 57
            aload 6 /* b */
            astore 2 /* sources */
        end local 6 // io.reactivex.ObservableSource[] b
        10: .line 59
      StackMap locals: io.reactivex.internal.operators.observable.ObservableCombineLatest io.reactivex.Observer io.reactivex.ObservableSource[] int io.reactivex.ObservableSource java.util.Iterator
      StackMap stack:
            aload 2 /* sources */
            iload 3 /* count */
            iinc 3 /* count */ 1
            aload 4 /* p */
            aastore
        end local 4 // io.reactivex.ObservableSource p
        11: .line 53
      StackMap locals: io.reactivex.internal.operators.observable.ObservableCombineLatest io.reactivex.Observer io.reactivex.ObservableSource[] int top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        12: .line 61
            goto 14
        13: .line 62
      StackMap locals: io.reactivex.internal.operators.observable.ObservableCombineLatest io.reactivex.Observer io.reactivex.ObservableSource[] int
      StackMap stack:
            aload 2 /* sources */
            arraylength
            istore 3 /* count */
        14: .line 65
      StackMap locals:
      StackMap stack:
            iload 3 /* count */
            ifne 17
        15: .line 66
            aload 1 /* observer */
            invokestatic io.reactivex.internal.disposables.EmptyDisposable.complete:(Lio/reactivex/Observer;)V
        16: .line 67
            return
        17: .line 70
      StackMap locals:
      StackMap stack:
            new io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator
            dup
            aload 1 /* observer */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableCombineLatest.combiner:Lio/reactivex/functions/Function;
            iload 3 /* count */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableCombineLatest.bufferSize:I
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableCombineLatest.delayError:Z
            invokespecial io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator.<init>:(Lio/reactivex/Observer;Lio/reactivex/functions/Function;IIZ)V
            astore 4 /* lc */
        start local 4 // io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator lc
        18: .line 71
            aload 4 /* lc */
            aload 2 /* sources */
            invokevirtual io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator.subscribe:([Lio/reactivex/ObservableSource;)V
        19: .line 72
            return
        end local 4 // io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator lc
        end local 3 // int count
        end local 2 // io.reactivex.ObservableSource[] sources
        end local 1 // io.reactivex.Observer observer
        end local 0 // io.reactivex.internal.operators.observable.ObservableCombineLatest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   20     0      this  Lio/reactivex/internal/operators/observable/ObservableCombineLatest<TT;TR;>;
            0   20     1  observer  Lio/reactivex/Observer<-TR;>;
            1   20     2   sources  [Lio/reactivex/ObservableSource;
            2   20     3     count  I
            6   11     4         p  Lio/reactivex/ObservableSource<+TT;>;
            8   10     6         b  [Lio/reactivex/ObservableSource;
           18   20     4        lc  Lio/reactivex/internal/operators/observable/ObservableCombineLatest$LatestCoordinator<TT;TR;>;
    Signature: (Lio/reactivex/Observer<-TR;>;)V
    MethodParameters:
          Name  Flags
      observer  
}
Signature: <T:Ljava/lang/Object;R:Ljava/lang/Object;>Lio/reactivex/Observable<TR;>;
SourceFile: "ObservableCombineLatest.java"
NestMembers:
  io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver  io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator
InnerClasses:
  final CombinerObserver = io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver of io.reactivex.internal.operators.observable.ObservableCombineLatest
  final LatestCoordinator = io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator of io.reactivex.internal.operators.observable.ObservableCombineLatest