public final class io.reactivex.internal.operators.observable.ObservableAllSingle<T> extends io.reactivex.Single<java.lang.Boolean> implements io.reactivex.internal.fuseable.FuseToObservable<java.lang.Boolean>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.observable.ObservableAllSingle
  super_class: io.reactivex.Single
{
  final io.reactivex.ObservableSource<T> source;
    descriptor: Lio/reactivex/ObservableSource;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/ObservableSource<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.ObservableSource<T>, io.reactivex.functions.Predicate<? super T>);
    descriptor: (Lio/reactivex/ObservableSource;Lio/reactivex/functions/Predicate;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.observable.ObservableAllSingle this
        start local 1 // io.reactivex.ObservableSource source
        start local 2 // io.reactivex.functions.Predicate predicate
         0: .line 27
            aload 0 /* this */
            invokespecial io.reactivex.Single.<init>:()V
         1: .line 28
            aload 0 /* this */
            aload 1 /* source */
            putfield io.reactivex.internal.operators.observable.ObservableAllSingle.source:Lio/reactivex/ObservableSource;
         2: .line 29
            aload 0 /* this */
            aload 2 /* predicate */
            putfield io.reactivex.internal.operators.observable.ObservableAllSingle.predicate:Lio/reactivex/functions/Predicate;
         3: .line 30
            return
        end local 2 // io.reactivex.functions.Predicate predicate
        end local 1 // io.reactivex.ObservableSource source
        end local 0 // io.reactivex.internal.operators.observable.ObservableAllSingle this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lio/reactivex/internal/operators/observable/ObservableAllSingle<TT;>;
            0    4     1     source  Lio/reactivex/ObservableSource<TT;>;
            0    4     2  predicate  Lio/reactivex/functions/Predicate<-TT;>;
    Signature: (Lio/reactivex/ObservableSource<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.observable.ObservableAllSingle this
        start local 1 // io.reactivex.SingleObserver t
         0: .line 34
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableAllSingle.source:Lio/reactivex/ObservableSource;
            new io.reactivex.internal.operators.observable.ObservableAllSingle$AllObserver
            dup
            aload 1 /* t */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableAllSingle.predicate:Lio/reactivex/functions/Predicate;
            invokespecial io.reactivex.internal.operators.observable.ObservableAllSingle$AllObserver.<init>:(Lio/reactivex/SingleObserver;Lio/reactivex/functions/Predicate;)V
            invokeinterface io.reactivex.ObservableSource.subscribe:(Lio/reactivex/Observer;)V
         1: .line 35
            return
        end local 1 // io.reactivex.SingleObserver t
        end local 0 // io.reactivex.internal.operators.observable.ObservableAllSingle this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/observable/ObservableAllSingle<TT;>;
            0    2     1     t  Lio/reactivex/SingleObserver<-Ljava/lang/Boolean;>;
    Signature: (Lio/reactivex/SingleObserver<-Ljava/lang/Boolean;>;)V
    MethodParameters:
      Name  Flags
      t     

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