public final class io.reactivex.internal.operators.flowable.FlowableWithLatestFrom<T, U, R> extends io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream<T, R>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableWithLatestFrom
  super_class: io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream
{
  final io.reactivex.functions.BiFunction<? super T, ? super U, ? extends R> combiner;
    descriptor: Lio/reactivex/functions/BiFunction;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/BiFunction<-TT;-TU;+TR;>;

  final org.reactivestreams.Publisher<? extends U> other;
    descriptor: Lorg/reactivestreams/Publisher;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Publisher<+TU;>;

  public void <init>(io.reactivex.Flowable<T>, io.reactivex.functions.BiFunction<? super T, ? super U, ? extends R>, org.reactivestreams.Publisher<? extends U>);
    descriptor: (Lio/reactivex/Flowable;Lio/reactivex/functions/BiFunction;Lorg/reactivestreams/Publisher;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.reactivex.internal.operators.flowable.FlowableWithLatestFrom this
        start local 1 // io.reactivex.Flowable source
        start local 2 // io.reactivex.functions.BiFunction combiner
        start local 3 // org.reactivestreams.Publisher other
         0: .line 32
            aload 0 /* this */
            aload 1 /* source */
            invokespecial io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream.<init>:(Lio/reactivex/Flowable;)V
         1: .line 33
            aload 0 /* this */
            aload 2 /* combiner */
            putfield io.reactivex.internal.operators.flowable.FlowableWithLatestFrom.combiner:Lio/reactivex/functions/BiFunction;
         2: .line 34
            aload 0 /* this */
            aload 3 /* other */
            putfield io.reactivex.internal.operators.flowable.FlowableWithLatestFrom.other:Lorg/reactivestreams/Publisher;
         3: .line 35
            return
        end local 3 // org.reactivestreams.Publisher other
        end local 2 // io.reactivex.functions.BiFunction combiner
        end local 1 // io.reactivex.Flowable source
        end local 0 // io.reactivex.internal.operators.flowable.FlowableWithLatestFrom this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/reactivex/internal/operators/flowable/FlowableWithLatestFrom<TT;TU;TR;>;
            0    4     1    source  Lio/reactivex/Flowable<TT;>;
            0    4     2  combiner  Lio/reactivex/functions/BiFunction<-TT;-TU;+TR;>;
            0    4     3     other  Lorg/reactivestreams/Publisher<+TU;>;
    Signature: (Lio/reactivex/Flowable<TT;>;Lio/reactivex/functions/BiFunction<-TT;-TU;+TR;>;Lorg/reactivestreams/Publisher<+TU;>;)V
    MethodParameters:
          Name  Flags
      source    
      combiner  
      other     

  protected void subscribeActual(org.reactivestreams.Subscriber<? super R>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableWithLatestFrom this
        start local 1 // org.reactivestreams.Subscriber s
         0: .line 39
            new io.reactivex.subscribers.SerializedSubscriber
            dup
            aload 1 /* s */
            invokespecial io.reactivex.subscribers.SerializedSubscriber.<init>:(Lorg/reactivestreams/Subscriber;)V
            astore 2 /* serial */
        start local 2 // io.reactivex.subscribers.SerializedSubscriber serial
         1: .line 40
            new io.reactivex.internal.operators.flowable.FlowableWithLatestFrom$WithLatestFromSubscriber
            dup
            aload 2 /* serial */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableWithLatestFrom.combiner:Lio/reactivex/functions/BiFunction;
            invokespecial io.reactivex.internal.operators.flowable.FlowableWithLatestFrom$WithLatestFromSubscriber.<init>:(Lorg/reactivestreams/Subscriber;Lio/reactivex/functions/BiFunction;)V
            astore 3 /* wlf */
        start local 3 // io.reactivex.internal.operators.flowable.FlowableWithLatestFrom$WithLatestFromSubscriber wlf
         2: .line 42
            aload 2 /* serial */
            aload 3 /* wlf */
            invokevirtual io.reactivex.subscribers.SerializedSubscriber.onSubscribe:(Lorg/reactivestreams/Subscription;)V
         3: .line 44
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableWithLatestFrom.other:Lorg/reactivestreams/Publisher;
            new io.reactivex.internal.operators.flowable.FlowableWithLatestFrom$FlowableWithLatestSubscriber
            dup
            aload 0 /* this */
            aload 3 /* wlf */
            invokespecial io.reactivex.internal.operators.flowable.FlowableWithLatestFrom$FlowableWithLatestSubscriber.<init>:(Lio/reactivex/internal/operators/flowable/FlowableWithLatestFrom;Lio/reactivex/internal/operators/flowable/FlowableWithLatestFrom$WithLatestFromSubscriber;)V
            invokeinterface org.reactivestreams.Publisher.subscribe:(Lorg/reactivestreams/Subscriber;)V
         4: .line 46
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableWithLatestFrom.source:Lio/reactivex/Flowable;
            aload 3 /* wlf */
            invokevirtual io.reactivex.Flowable.subscribe:(Lio/reactivex/FlowableSubscriber;)V
         5: .line 47
            return
        end local 3 // io.reactivex.internal.operators.flowable.FlowableWithLatestFrom$WithLatestFromSubscriber wlf
        end local 2 // io.reactivex.subscribers.SerializedSubscriber serial
        end local 1 // org.reactivestreams.Subscriber s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableWithLatestFrom this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/reactivex/internal/operators/flowable/FlowableWithLatestFrom<TT;TU;TR;>;
            0    6     1       s  Lorg/reactivestreams/Subscriber<-TR;>;
            1    6     2  serial  Lio/reactivex/subscribers/SerializedSubscriber<TR;>;
            2    6     3     wlf  Lio/reactivex/internal/operators/flowable/FlowableWithLatestFrom$WithLatestFromSubscriber<TT;TU;TR;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TR;>;)V
    MethodParameters:
      Name  Flags
      s     
}
Signature: <T:Ljava/lang/Object;U:Ljava/lang/Object;R:Ljava/lang/Object;>Lio/reactivex/internal/operators/flowable/AbstractFlowableWithUpstream<TT;TR;>;
SourceFile: "FlowableWithLatestFrom.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableWithLatestFrom$FlowableWithLatestSubscriber  io.reactivex.internal.operators.flowable.FlowableWithLatestFrom$WithLatestFromSubscriber
InnerClasses:
  final FlowableWithLatestSubscriber = io.reactivex.internal.operators.flowable.FlowableWithLatestFrom$FlowableWithLatestSubscriber of io.reactivex.internal.operators.flowable.FlowableWithLatestFrom
  final WithLatestFromSubscriber = io.reactivex.internal.operators.flowable.FlowableWithLatestFrom$WithLatestFromSubscriber of io.reactivex.internal.operators.flowable.FlowableWithLatestFrom