public final class org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
  super_class: java.lang.Object
{
  private static final org.eclipse.collections.api.block.predicate.primitive.DoublePredicate ALWAYS_TRUE;
    descriptor: Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.eclipse.collections.api.block.predicate.primitive.DoublePredicate ALWAYS_FALSE;
    descriptor: Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 21
            new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysTrueDoublePredicate
            dup
            invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysTrueDoublePredicate.<init>:()V
            putstatic org.eclipse.collections.impl.block.factory.primitive.DoublePredicates.ALWAYS_TRUE:Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
         1: .line 22
            new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysFalseDoublePredicate
            dup
            invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysFalseDoublePredicate.<init>:()V
            putstatic org.eclipse.collections.impl.block.factory.primitive.DoublePredicates.ALWAYS_FALSE:Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.block.factory.primitive.DoublePredicates this
         0: .line 24
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 26
            new java.lang.AssertionError
            dup
            ldc "Suppress default constructor for noninstantiability"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 0 // org.eclipse.collections.impl.block.factory.primitive.DoublePredicates this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/block/factory/primitive/DoublePredicates;

  public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate equal(double);
    descriptor: (D)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double expected
         0: .line 32
            new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsDoublePredicate
            dup
            dload 0 /* expected */
            invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsDoublePredicate.<init>:(D)V
            areturn
        end local 0 // double expected
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  expected  D
    MethodParameters:
          Name  Flags
      expected  

  public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate equal(double, double);
    descriptor: (DD)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // double expected
        start local 2 // double delta
         0: .line 37
            new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsWithDeltaDoublePredicate
            dup
            dload 0 /* expected */
            dload 2 /* delta */
            invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsWithDeltaDoublePredicate.<init>:(DD)V
            areturn
        end local 2 // double delta
        end local 0 // double expected
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  expected  D
            0    1     2     delta  D
    MethodParameters:
          Name  Flags
      expected  
      delta     

  public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate lessThan(double);
    descriptor: (D)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double expected
         0: .line 42
            new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$LessThanDoublePredicate
            dup
            dload 0 /* expected */
            invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$LessThanDoublePredicate.<init>:(D)V
            areturn
        end local 0 // double expected
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  expected  D
    MethodParameters:
          Name  Flags
      expected  

  public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate greaterThan(double);
    descriptor: (D)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double expected
         0: .line 47
            new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$GreaterThanDoublePredicate
            dup
            dload 0 /* expected */
            invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$GreaterThanDoublePredicate.<init>:(D)V
            areturn
        end local 0 // double expected
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  expected  D
    MethodParameters:
          Name  Flags
      expected  

  public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate alwaysTrue();
    descriptor: ()Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 52
            getstatic org.eclipse.collections.impl.block.factory.primitive.DoublePredicates.ALWAYS_TRUE:Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate alwaysFalse();
    descriptor: ()Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 57
            getstatic org.eclipse.collections.impl.block.factory.primitive.DoublePredicates.ALWAYS_FALSE:Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate and(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate, org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate one
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate two
         0: .line 62
            new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AndDoublePredicate
            dup
            aload 0 /* one */
            aload 1 /* two */
            invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AndDoublePredicate.<init>:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate two
        end local 0 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate one
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   one  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            0    1     1   two  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    MethodParameters:
      Name  Flags
      one   
      two   

  public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate or(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate, org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate one
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate two
         0: .line 67
            new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$OrDoublePredicate
            dup
            aload 0 /* one */
            aload 1 /* two */
            invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$OrDoublePredicate.<init>:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)V
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate two
        end local 0 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate one
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   one  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            0    1     1   two  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    MethodParameters:
      Name  Flags
      one   
      two   

  public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate not(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate negate
         0: .line 72
            new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$NotDoublePredicate
            dup
            aload 0 /* negate */
            invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$NotDoublePredicate.<init>:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)V
            areturn
        end local 0 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate negate
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  negate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
    MethodParameters:
        Name  Flags
      negate  
}
SourceFile: "DoublePredicates.java"
NestMembers:
  org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysFalseDoublePredicate  org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysTrueDoublePredicate  org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AndDoublePredicate  org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsDoublePredicate  org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsWithDeltaDoublePredicate  org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$GreaterThanDoublePredicate  org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$LessThanDoublePredicate  org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$NotDoublePredicate  org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$OrDoublePredicate
InnerClasses:
  private final AlwaysFalseDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysFalseDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
  private final AlwaysTrueDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysTrueDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
  private final AndDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AndDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
  private final EqualsDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
  private final EqualsWithDeltaDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsWithDeltaDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
  private final GreaterThanDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$GreaterThanDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
  private final LessThanDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$LessThanDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
  private final NotDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$NotDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
  private final OrDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$OrDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates