public final class io.reactivex.internal.operators.flowable.FlowableSequenceEqual<T> extends io.reactivex.Flowable<java.lang.Boolean>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableSequenceEqual
  super_class: io.reactivex.Flowable
{
  final org.reactivestreams.Publisher<? extends T> first;
    descriptor: Lorg/reactivestreams/Publisher;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Publisher<+TT;>;

  final org.reactivestreams.Publisher<? extends T> second;
    descriptor: Lorg/reactivestreams/Publisher;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Publisher<+TT;>;

  final io.reactivex.functions.BiPredicate<? super T, ? super T> comparer;
    descriptor: Lio/reactivex/functions/BiPredicate;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/BiPredicate<-TT;-TT;>;

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

  public void <init>(org.reactivestreams.Publisher<? extends T>, org.reactivestreams.Publisher<? extends T>, io.reactivex.functions.BiPredicate<? super T, ? super T>, );
    descriptor: (Lorg/reactivestreams/Publisher;Lorg/reactivestreams/Publisher;Lio/reactivex/functions/BiPredicate;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.reactivex.internal.operators.flowable.FlowableSequenceEqual this
        start local 1 // org.reactivestreams.Publisher first
        start local 2 // org.reactivestreams.Publisher second
        start local 3 // io.reactivex.functions.BiPredicate comparer
        start local 4 // int prefetch
         0: .line 35
            aload 0 /* this */
            invokespecial io.reactivex.Flowable.<init>:()V
         1: .line 37
            aload 0 /* this */
            aload 1 /* first */
            putfield io.reactivex.internal.operators.flowable.FlowableSequenceEqual.first:Lorg/reactivestreams/Publisher;
         2: .line 38
            aload 0 /* this */
            aload 2 /* second */
            putfield io.reactivex.internal.operators.flowable.FlowableSequenceEqual.second:Lorg/reactivestreams/Publisher;
         3: .line 39
            aload 0 /* this */
            aload 3 /* comparer */
            putfield io.reactivex.internal.operators.flowable.FlowableSequenceEqual.comparer:Lio/reactivex/functions/BiPredicate;
         4: .line 40
            aload 0 /* this */
            iload 4 /* prefetch */
            putfield io.reactivex.internal.operators.flowable.FlowableSequenceEqual.prefetch:I
         5: .line 41
            return
        end local 4 // int prefetch
        end local 3 // io.reactivex.functions.BiPredicate comparer
        end local 2 // org.reactivestreams.Publisher second
        end local 1 // org.reactivestreams.Publisher first
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSequenceEqual this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/reactivex/internal/operators/flowable/FlowableSequenceEqual<TT;>;
            0    6     1     first  Lorg/reactivestreams/Publisher<+TT;>;
            0    6     2    second  Lorg/reactivestreams/Publisher<+TT;>;
            0    6     3  comparer  Lio/reactivex/functions/BiPredicate<-TT;-TT;>;
            0    6     4  prefetch  I
    Signature: (Lorg/reactivestreams/Publisher<+TT;>;Lorg/reactivestreams/Publisher<+TT;>;Lio/reactivex/functions/BiPredicate<-TT;-TT;>;I)V
    MethodParameters:
          Name  Flags
      first     
      second    
      comparer  
      prefetch  

  public void subscribeActual(org.reactivestreams.Subscriber<? super java.lang.Boolean>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableSequenceEqual this
        start local 1 // org.reactivestreams.Subscriber s
         0: .line 45
            new io.reactivex.internal.operators.flowable.FlowableSequenceEqual$EqualCoordinator
            dup
            aload 1 /* s */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSequenceEqual.prefetch:I
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSequenceEqual.comparer:Lio/reactivex/functions/BiPredicate;
            invokespecial io.reactivex.internal.operators.flowable.FlowableSequenceEqual$EqualCoordinator.<init>:(Lorg/reactivestreams/Subscriber;ILio/reactivex/functions/BiPredicate;)V
            astore 2 /* parent */
        start local 2 // io.reactivex.internal.operators.flowable.FlowableSequenceEqual$EqualCoordinator parent
         1: .line 46
            aload 1 /* s */
            aload 2 /* parent */
            invokeinterface org.reactivestreams.Subscriber.onSubscribe:(Lorg/reactivestreams/Subscription;)V
         2: .line 47
            aload 2 /* parent */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSequenceEqual.first:Lorg/reactivestreams/Publisher;
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSequenceEqual.second:Lorg/reactivestreams/Publisher;
            invokevirtual io.reactivex.internal.operators.flowable.FlowableSequenceEqual$EqualCoordinator.subscribe:(Lorg/reactivestreams/Publisher;Lorg/reactivestreams/Publisher;)V
         3: .line 48
            return
        end local 2 // io.reactivex.internal.operators.flowable.FlowableSequenceEqual$EqualCoordinator parent
        end local 1 // org.reactivestreams.Subscriber s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSequenceEqual this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/reactivex/internal/operators/flowable/FlowableSequenceEqual<TT;>;
            0    4     1       s  Lorg/reactivestreams/Subscriber<-Ljava/lang/Boolean;>;
            1    4     2  parent  Lio/reactivex/internal/operators/flowable/FlowableSequenceEqual$EqualCoordinator<TT;>;
    Signature: (Lorg/reactivestreams/Subscriber<-Ljava/lang/Boolean;>;)V
    MethodParameters:
      Name  Flags
      s     
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/Flowable<Ljava/lang/Boolean;>;
SourceFile: "FlowableSequenceEqual.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableSequenceEqual$EqualCoordinator  io.reactivex.internal.operators.flowable.FlowableSequenceEqual$EqualCoordinatorHelper  io.reactivex.internal.operators.flowable.FlowableSequenceEqual$EqualSubscriber
InnerClasses:
  final EqualCoordinator = io.reactivex.internal.operators.flowable.FlowableSequenceEqual$EqualCoordinator of io.reactivex.internal.operators.flowable.FlowableSequenceEqual
  abstract EqualCoordinatorHelper = io.reactivex.internal.operators.flowable.FlowableSequenceEqual$EqualCoordinatorHelper of io.reactivex.internal.operators.flowable.FlowableSequenceEqual
  final EqualSubscriber = io.reactivex.internal.operators.flowable.FlowableSequenceEqual$EqualSubscriber of io.reactivex.internal.operators.flowable.FlowableSequenceEqual