public final class io.reactivex.internal.operators.flowable.FlowableAllSingle<T> extends io.reactivex.Single<java.lang.Boolean> implements io.reactivex.internal.fuseable.FuseToFlowable<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.FlowableAllSingle
  super_class: io.reactivex.Single
{
  final io.reactivex.Flowable<T> source;
    descriptor: Lio/reactivex/Flowable;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/Flowable<TT;>;

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

  public void <init>(io.reactivex.Flowable<T>, io.reactivex.functions.Predicate<? super T>);
    descriptor: (Lio/reactivex/Flowable;Lio/reactivex/functions/Predicate;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.flowable.FlowableAllSingle this
        start local 1 // io.reactivex.Flowable source
        start local 2 // io.reactivex.functions.Predicate predicate
         0: .line 31
            aload 0 /* this */
            invokespecial io.reactivex.Single.<init>:()V
         1: .line 32
            aload 0 /* this */
            aload 1 /* source */
            putfield io.reactivex.internal.operators.flowable.FlowableAllSingle.source:Lio/reactivex/Flowable;
         2: .line 33
            aload 0 /* this */
            aload 2 /* predicate */
            putfield io.reactivex.internal.operators.flowable.FlowableAllSingle.predicate:Lio/reactivex/functions/Predicate;
         3: .line 34
            return
        end local 2 // io.reactivex.functions.Predicate predicate
        end local 1 // io.reactivex.Flowable source
        end local 0 // io.reactivex.internal.operators.flowable.FlowableAllSingle this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lio/reactivex/internal/operators/flowable/FlowableAllSingle<TT;>;
            0    4     1     source  Lio/reactivex/Flowable<TT;>;
            0    4     2  predicate  Lio/reactivex/functions/Predicate<-TT;>;
    Signature: (Lio/reactivex/Flowable<TT;>;Lio/reactivex/functions/Predicate<-TT;>;)V
    MethodParameters:
           Name  Flags
      source     
      predicate  

  protected void subscribeActual(io.reactivex.SingleObserver<? super java.lang.Boolean>);
    descriptor: (Lio/reactivex/SingleObserver;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableAllSingle this
        start local 1 // io.reactivex.SingleObserver observer
         0: .line 38
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableAllSingle.source:Lio/reactivex/Flowable;
            new io.reactivex.internal.operators.flowable.FlowableAllSingle$AllSubscriber
            dup
            aload 1 /* observer */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableAllSingle.predicate:Lio/reactivex/functions/Predicate;
            invokespecial io.reactivex.internal.operators.flowable.FlowableAllSingle$AllSubscriber.<init>:(Lio/reactivex/SingleObserver;Lio/reactivex/functions/Predicate;)V
            invokevirtual io.reactivex.Flowable.subscribe:(Lio/reactivex/FlowableSubscriber;)V
         1: .line 39
            return
        end local 1 // io.reactivex.SingleObserver observer
        end local 0 // io.reactivex.internal.operators.flowable.FlowableAllSingle this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/reactivex/internal/operators/flowable/FlowableAllSingle<TT;>;
            0    2     1  observer  Lio/reactivex/SingleObserver<-Ljava/lang/Boolean;>;
    Signature: (Lio/reactivex/SingleObserver<-Ljava/lang/Boolean;>;)V
    MethodParameters:
          Name  Flags
      observer  

  public io.reactivex.Flowable<java.lang.Boolean> fuseToFlowable();
    descriptor: ()Lio/reactivex/Flowable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableAllSingle this
         0: .line 43
            new io.reactivex.internal.operators.flowable.FlowableAll
            dup
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableAllSingle.source:Lio/reactivex/Flowable;
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableAllSingle.predicate:Lio/reactivex/functions/Predicate;
            invokespecial io.reactivex.internal.operators.flowable.FlowableAll.<init>:(Lio/reactivex/Flowable;Lio/reactivex/functions/Predicate;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onAssembly:(Lio/reactivex/Flowable;)Lio/reactivex/Flowable;
            areturn
        end local 0 // io.reactivex.internal.operators.flowable.FlowableAllSingle this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/operators/flowable/FlowableAllSingle<TT;>;
    Signature: ()Lio/reactivex/Flowable<Ljava/lang/Boolean;>;
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/Single<Ljava/lang/Boolean;>;Lio/reactivex/internal/fuseable/FuseToFlowable<Ljava/lang/Boolean;>;
SourceFile: "FlowableAllSingle.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableAllSingle$AllSubscriber
InnerClasses:
  final AllSubscriber = io.reactivex.internal.operators.flowable.FlowableAllSingle$AllSubscriber of io.reactivex.internal.operators.flowable.FlowableAllSingle