public final class org.eclipse.collections.impl.Counter implements java.io.Externalizable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.Counter
  super_class: java.lang.Object
{
  public static final org.eclipse.collections.api.block.function.primitive.IntFunction<org.eclipse.collections.impl.Counter> TO_COUNT;
    descriptor: Lorg/eclipse/collections/api/block/function/primitive/IntFunction;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Lorg/eclipse/collections/api/block/function/primitive/IntFunction<Lorg/eclipse/collections/impl/Counter;>;

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private int count;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 26
            invokedynamic intValueOf()Lorg/eclipse/collections/api/block/function/primitive/IntFunction;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)I
                  org/eclipse/collections/impl/Counter.getCount()I (5)
                  (Lorg/eclipse/collections/impl/Counter;)I
                  1
            putstatic org.eclipse.collections.impl.Counter.TO_COUNT:Lorg/eclipse/collections/api/block/function/primitive/IntFunction;
         1: .line 28
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.Counter this
        start local 1 // int startCount
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 34
            aload 0 /* this */
            iload 1 /* startCount */
            putfield org.eclipse.collections.impl.Counter.count:I
         2: .line 35
            return
        end local 1 // int startCount
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/eclipse/collections/impl/Counter;
            0    3     1  startCount  I
    MethodParameters:
            Name  Flags
      startCount  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.Counter this
         0: .line 39
            aload 0 /* this */
            iconst_0
            invokespecial org.eclipse.collections.impl.Counter.<init>:(I)V
         1: .line 40
            return
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/Counter;

  public void increment();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.Counter this
         0: .line 44
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.Counter.count:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.Counter.count:I
         1: .line 45
            return
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/Counter;

  public void decrement();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.Counter this
         0: .line 49
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.Counter.count:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.Counter.count:I
         1: .line 50
            return
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/Counter;

  public void add(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.Counter this
        start local 1 // int value
         0: .line 54
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.Counter.count:I
            iload 1 /* value */
            iadd
            putfield org.eclipse.collections.impl.Counter.count:I
         1: .line 55
            return
        end local 1 // int value
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/collections/impl/Counter;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public int getCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.Counter this
         0: .line 59
            aload 0 /* this */
            getfield org.eclipse.collections.impl.Counter.count:I
            ireturn
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/Counter;

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.Counter this
         0: .line 64
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.Counter.count:I
         1: .line 65
            return
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/Counter;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.Counter this
         0: .line 70
            aload 0 /* this */
            getfield org.eclipse.collections.impl.Counter.count:I
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/Counter;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.Counter this
        start local 1 // java.lang.Object o
         0: .line 76
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 2
         1: .line 78
            iconst_1
            ireturn
         2: .line 80
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            instanceof org.eclipse.collections.impl.Counter
            ifne 4
         3: .line 82
            iconst_0
            ireturn
         4: .line 85
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.eclipse.collections.impl.Counter
            astore 2 /* counter */
        start local 2 // org.eclipse.collections.impl.Counter counter
         5: .line 87
            aload 0 /* this */
            getfield org.eclipse.collections.impl.Counter.count:I
            aload 2 /* counter */
            getfield org.eclipse.collections.impl.Counter.count:I
            if_icmpne 6
            iconst_1
            ireturn
      StackMap locals: org.eclipse.collections.impl.Counter
      StackMap stack:
         6: iconst_0
            ireturn
        end local 2 // org.eclipse.collections.impl.Counter counter
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/eclipse/collections/impl/Counter;
            0    7     1        o  Ljava/lang/Object;
            5    7     2  counter  Lorg/eclipse/collections/impl/Counter;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.Counter this
         0: .line 93
            aload 0 /* this */
            getfield org.eclipse.collections.impl.Counter.count:I
            ireturn
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/Counter;

  public void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.Counter this
        start local 1 // java.io.ObjectOutput out
         0: .line 99
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.Counter.count:I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         1: .line 100
            return
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/Counter;
            0    2     1   out  Ljava/io/ObjectOutput;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public void readExternal(java.io.ObjectInput);
    descriptor: (Ljava/io/ObjectInput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.Counter this
        start local 1 // java.io.ObjectInput in
         0: .line 105
            aload 0 /* this */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            putfield org.eclipse.collections.impl.Counter.count:I
         1: .line 106
            return
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.Counter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/Counter;
            0    2     1    in  Ljava/io/ObjectInput;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  private static java.lang.Object $deserializeLambda$(java.lang.invoke.SerializedLambda);
    descriptor: (Ljava/lang/invoke/SerializedLambda;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodName:()Ljava/lang/String;
            astore 1
            iconst_m1
            istore 2
            aload 1
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 1
           1950676825: 1
              default: 2
          }
      StackMap locals: java.lang.String int
      StackMap stack:
         1: aload 1
            ldc "getCount"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 2
            iconst_0
            istore 2
      StackMap locals:
      StackMap stack:
         2: iload 2
            lookupswitch { // 1
                    0: 3
              default: 4
          }
      StackMap locals:
      StackMap stack:
         3: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 5
            if_icmpne 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/function/primitive/IntFunction"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "intValueOf"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;)I"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/Counter"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "()I"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            invokedynamic intValueOf()Lorg/eclipse/collections/api/block/function/primitive/IntFunction;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)I
                  org/eclipse/collections/impl/Counter.getCount()I (5)
                  (Lorg/eclipse/collections/impl/Counter;)I
                  1
            areturn
      StackMap locals:
      StackMap stack:
         4: new java.lang.IllegalArgumentException
            dup
            ldc "Invalid lambda deserialization"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "Counter.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles