public class it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap extends it.unimi.dsi.fastutil.longs.AbstractLong2DoubleSortedMap implements java.io.Serializable, java.lang.Cloneable, it.unimi.dsi.fastutil.Hash
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap
  super_class: it.unimi.dsi.fastutil.longs.AbstractLong2DoubleSortedMap
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final boolean ASSERTS;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  protected transient long[] key;
    descriptor: [J
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient double[] value;
    descriptor: [D
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient int mask;
    descriptor: I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient boolean containsNullKey;
    descriptor: Z
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient int first;
    descriptor: I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient int last;
    descriptor: I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient long[] link;
    descriptor: [J
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient int n;
    descriptor: I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient int maxFill;
    descriptor: I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected final transient int minN;
    descriptor: I
    flags: (0x0094) ACC_PROTECTED, ACC_FINAL, ACC_TRANSIENT

  protected int size;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected final float f;
    descriptor: F
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected transient it.unimi.dsi.fastutil.longs.Long2DoubleSortedMap$FastSortedEntrySet entries;
    descriptor: Lit/unimi/dsi/fastutil/longs/Long2DoubleSortedMap$FastSortedEntrySet;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient it.unimi.dsi.fastutil.longs.LongSortedSet keys;
    descriptor: Lit/unimi/dsi/fastutil/longs/LongSortedSet;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient it.unimi.dsi.fastutil.doubles.DoubleCollection values;
    descriptor: Lit/unimi/dsi/fastutil/doubles/DoubleCollection;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  public void <init>(int, float);
    descriptor: (IF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int expected
        start local 2 // float f
         0: .line 152
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.longs.AbstractLong2DoubleSortedMap.<init>:()V
         1: .line 107
            aload 0 /* this */
            iconst_m1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
         2: .line 112
            aload 0 /* this */
            iconst_m1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
         3: .line 153
            fload 2 /* f */
            fconst_0
            fcmpg
            ifle 4
            fload 2 /* f */
            fconst_1
            fcmpl
            ifle 5
         4: .line 154
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap int float
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Load factor must be greater than 0 and smaller than or equal to 1"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 155
      StackMap locals:
      StackMap stack:
            iload 1 /* expected */
            ifge 7
         6: .line 156
            new java.lang.IllegalArgumentException
            dup
            ldc "The expected number of elements must be nonnegative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 157
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 2 /* f */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
         8: .line 158
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* expected */
            fload 2 /* f */
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.minN:I
         9: .line 159
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
        10: .line 160
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            fload 2 /* f */
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.maxFill:I
        11: .line 161
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 11
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
        12: .line 162
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 7
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
        13: .line 163
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 11
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
        14: .line 164
            return
        end local 2 // float f
        end local 1 // int expected
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   15     1  expected  I
            0   15     2         f  F
    MethodParameters:
          Name  Flags
      expected  final
      f         final

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int expected
         0: .line 172
            aload 0 /* this */
            iload 1 /* expected */
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.<init>:(IF)V
         1: .line 173
            return
        end local 1 // int expected
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    2     1  expected  I
    MethodParameters:
          Name  Flags
      expected  final

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 180
            aload 0 /* this */
            bipush 16
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.<init>:(IF)V
         1: .line 181
            return
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  public void <init>(java.util.Map<? extends java.lang.Long, ? extends java.lang.Double>, );
    descriptor: (Ljava/util/Map;F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // java.util.Map m
        start local 2 // float f
         0: .line 191
            aload 0 /* this */
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            fload 2 /* f */
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.<init>:(IF)V
         1: .line 192
            aload 0 /* this */
            aload 1 /* m */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.putAll:(Ljava/util/Map;)V
         2: .line 193
            return
        end local 2 // float f
        end local 1 // java.util.Map m
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    3     1     m  Ljava/util/Map<+Ljava/lang/Long;+Ljava/lang/Double;>;
            0    3     2     f  F
    Signature: (Ljava/util/Map<+Ljava/lang/Long;+Ljava/lang/Double;>;F)V
    MethodParameters:
      Name  Flags
      m     final
      f     final

  public void <init>(java.util.Map<? extends java.lang.Long, ? extends java.lang.Double>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // java.util.Map m
         0: .line 202
            aload 0 /* this */
            aload 1 /* m */
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.<init>:(Ljava/util/Map;F)V
         1: .line 203
            return
        end local 1 // java.util.Map m
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    2     1     m  Ljava/util/Map<+Ljava/lang/Long;+Ljava/lang/Double;>;
    Signature: (Ljava/util/Map<+Ljava/lang/Long;+Ljava/lang/Double;>;)V
    MethodParameters:
      Name  Flags
      m     final

  public void <init>(it.unimi.dsi.fastutil.longs.Long2DoubleMap, float);
    descriptor: (Lit/unimi/dsi/fastutil/longs/Long2DoubleMap;F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // it.unimi.dsi.fastutil.longs.Long2DoubleMap m
        start local 2 // float f
         0: .line 213
            aload 0 /* this */
            aload 1 /* m */
            invokeinterface it.unimi.dsi.fastutil.longs.Long2DoubleMap.size:()I
            fload 2 /* f */
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.<init>:(IF)V
         1: .line 214
            aload 0 /* this */
            aload 1 /* m */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.putAll:(Ljava/util/Map;)V
         2: .line 215
            return
        end local 2 // float f
        end local 1 // it.unimi.dsi.fastutil.longs.Long2DoubleMap m
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    3     1     m  Lit/unimi/dsi/fastutil/longs/Long2DoubleMap;
            0    3     2     f  F
    MethodParameters:
      Name  Flags
      m     final
      f     final

  public void <init>(it.unimi.dsi.fastutil.longs.Long2DoubleMap);
    descriptor: (Lit/unimi/dsi/fastutil/longs/Long2DoubleMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // it.unimi.dsi.fastutil.longs.Long2DoubleMap m
         0: .line 224
            aload 0 /* this */
            aload 1 /* m */
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.<init>:(Lit/unimi/dsi/fastutil/longs/Long2DoubleMap;F)V
         1: .line 225
            return
        end local 1 // it.unimi.dsi.fastutil.longs.Long2DoubleMap m
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    2     1     m  Lit/unimi/dsi/fastutil/longs/Long2DoubleMap;
    MethodParameters:
      Name  Flags
      m     final

  public void <init>(long[], double[], float);
    descriptor: ([J[DF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long[] k
        start local 2 // double[] v
        start local 3 // float f
         0: .line 239
            aload 0 /* this */
            aload 1 /* k */
            arraylength
            fload 3 /* f */
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.<init>:(IF)V
         1: .line 240
            aload 1 /* k */
            arraylength
            aload 2 /* v */
            arraylength
            if_icmpeq 5
         2: .line 241
            new java.lang.IllegalArgumentException
            dup
         3: .line 242
            new java.lang.StringBuilder
            dup
            ldc "The key array and the value array have different lengths ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* k */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " and "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* v */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 241
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 243
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap long[] double[] float
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 9
         7: .line 244
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* k */
            iload 4 /* i */
            laload
            aload 2 /* v */
            iload 4 /* i */
            daload
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.put:(JD)D
            pop2
         8: .line 243
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 4 /* i */
            aload 1 /* k */
            arraylength
            if_icmplt 7
        end local 4 // int i
        10: .line 245
            return
        end local 3 // float f
        end local 2 // double[] v
        end local 1 // long[] k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   11     1     k  [J
            0   11     2     v  [D
            0   11     3     f  F
            6   10     4     i  I
    MethodParameters:
      Name  Flags
      k     final
      v     final
      f     final

  public void <init>(long[], double[]);
    descriptor: ([J[D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long[] k
        start local 2 // double[] v
         0: .line 258
            aload 0 /* this */
            aload 1 /* k */
            aload 2 /* v */
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.<init>:([J[DF)V
         1: .line 259
            return
        end local 2 // double[] v
        end local 1 // long[] k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    2     1     k  [J
            0    2     2     v  [D
    MethodParameters:
      Name  Flags
      k     final
      v     final

  private int realSize();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 261
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 1
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            iconst_1
            isub
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  private void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int capacity
         0: .line 264
            iload 1 /* capacity */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            istore 2 /* needed */
        start local 2 // int needed
         1: .line 265
            iload 2 /* needed */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            if_icmple 3
         2: .line 266
            aload 0 /* this */
            iload 2 /* needed */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.rehash:(I)V
         3: .line 267
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int needed
        end local 1 // int capacity
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    4     1  capacity  I
            1    4     2    needed  I
    MethodParameters:
          Name  Flags
      capacity  final

  private void tryCapacity(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long capacity
         0: .line 269
            ldc 1073741824
         1: .line 270
            ldc 2
            lload 1 /* capacity */
            l2f
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            fdiv
            f2d
            invokestatic java.lang.Math.ceil:(D)D
            d2l
            invokestatic it.unimi.dsi.fastutil.HashCommon.nextPowerOfTwo:(J)J
            invokestatic java.lang.Math.max:(JJ)J
         2: .line 269
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 3 /* needed */
        start local 3 // int needed
         3: .line 271
            iload 3 /* needed */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            if_icmple 5
         4: .line 272
            aload 0 /* this */
            iload 3 /* needed */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.rehash:(I)V
         5: .line 273
      StackMap locals: int
      StackMap stack:
            return
        end local 3 // int needed
        end local 1 // long capacity
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    6     1  capacity  J
            3    6     3    needed  I
    MethodParameters:
          Name  Flags
      capacity  final

  private double removeEntry(int);
    descriptor: (I)D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int pos
         0: .line 275
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 1 /* pos */
            daload
            dstore 2 /* oldValue */
        start local 2 // double oldValue
         1: .line 276
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
         2: .line 277
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.fixPointers:(I)V
         3: .line 278
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.shiftKeys:(I)V
         4: .line 279
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.minN:I
            if_icmple 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.maxFill:I
            iconst_4
            idiv
            if_icmpge 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            bipush 16
            if_icmple 6
         5: .line 280
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_2
            idiv
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.rehash:(I)V
         6: .line 281
      StackMap locals: double
      StackMap stack:
            dload 2 /* oldValue */
            dreturn
        end local 2 // double oldValue
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    7     1       pos  I
            1    7     2  oldValue  D
    MethodParameters:
      Name  Flags
      pos   final

  private double removeNullEntry();
    descriptor: ()D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 284
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
         1: .line 285
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            daload
            dstore 1 /* oldValue */
        start local 1 // double oldValue
         2: .line 286
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
         3: .line 287
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.fixPointers:(I)V
         4: .line 288
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.minN:I
            if_icmple 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.maxFill:I
            iconst_4
            idiv
            if_icmpge 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            bipush 16
            if_icmple 6
         5: .line 289
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_2
            idiv
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.rehash:(I)V
         6: .line 290
      StackMap locals: double
      StackMap stack:
            dload 1 /* oldValue */
            dreturn
        end local 1 // double oldValue
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            2    7     1  oldValue  D

  public void putAll(java.util.Map<? extends java.lang.Long, ? extends java.lang.Double>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // java.util.Map m
         0: .line 294
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            f2d
            ldc 0.5
            dcmpg
            ifgt 2
         1: .line 295
            aload 0 /* this */
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.ensureCapacity:(I)V
            goto 3
         2: .line 297
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:()I
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            iadd
            i2l
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.tryCapacity:(J)V
         3: .line 299
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* m */
            invokespecial it.unimi.dsi.fastutil.longs.AbstractLong2DoubleSortedMap.putAll:(Ljava/util/Map;)V
         4: .line 300
            return
        end local 1 // java.util.Map m
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    5     1     m  Ljava/util/Map<+Ljava/lang/Long;+Ljava/lang/Double;>;
    Signature: (Ljava/util/Map<+Ljava/lang/Long;+Ljava/lang/Double;>;)V
    MethodParameters:
      Name  Flags
      m     

  private int find(long);
    descriptor: (J)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
         0: .line 303
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 4
         1: .line 304
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_1
            iadd
            ineg
      StackMap locals:
      StackMap stack: int
         3: ireturn
         4: .line 306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 5 /* key */
        start local 5 // long[] key
         5: .line 309
            aload 5 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
        start local 6 // int pos
         6: laload
            dup2
            lstore 3 /* curr */
        start local 3 // long curr
         7: lconst_0
            lcmp
            ifne 9
         8: .line 310
            iload 6 /* pos */
            iconst_1
            iadd
            ineg
            ireturn
         9: .line 311
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        10: .line 312
            iload 6 /* pos */
            ireturn
        11: .line 315
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 6 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
            laload
            dup2
            lstore 3 /* curr */
            lconst_0
            lcmp
            ifne 13
        12: .line 316
            iload 6 /* pos */
            iconst_1
            iadd
            ineg
            ireturn
        13: .line 317
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        14: .line 318
            iload 6 /* pos */
            ireturn
        end local 6 // int pos
        end local 5 // long[] key
        end local 3 // long curr
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   15     1     k  J
            7   15     3  curr  J
            5   15     5   key  [J
            6   15     6   pos  I
    MethodParameters:
      Name  Flags
      k     final

  private void insert(int, long, double);
    descriptor: (IJD)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=6, args_size=4
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int pos
        start local 2 // long k
        start local 4 // double v
         0: .line 322
            iload 1 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            if_icmpne 2
         1: .line 323
            aload 0 /* this */
            iconst_1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
         2: .line 324
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            iload 1 /* pos */
            lload 2 /* k */
            lastore
         3: .line 325
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 1 /* pos */
            dload 4 /* v */
            dastore
         4: .line 326
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ifne 8
         5: .line 327
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* pos */
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
         6: .line 329
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* pos */
            ldc -1
            lastore
         7: .line 330
            goto 11
         8: .line 331
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            laload
            iload 1 /* pos */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
         9: .line 332
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            ldc 4294967295
            lor
            lastore
        10: .line 333
            aload 0 /* this */
            iload 1 /* pos */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
        11: .line 335
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            dup_x1
            iconst_1
            iadd
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.maxFill:I
            if_icmplt 13
        12: .line 336
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.rehash:(I)V
        13: .line 339
      StackMap locals:
      StackMap stack:
            return
        end local 4 // double v
        end local 2 // long k
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   14     1   pos  I
            0   14     2     k  J
            0   14     4     v  D
    MethodParameters:
      Name  Flags
      pos   final
      k     final
      v     final

  public double put(long, double);
    descriptor: (JD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // double v
         0: .line 342
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.find:(J)I
            istore 5 /* pos */
        start local 5 // int pos
         1: .line 343
            iload 5 /* pos */
            ifge 4
         2: .line 344
            aload 0 /* this */
            iload 5 /* pos */
            ineg
            iconst_1
            isub
            lload 1 /* k */
            dload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.insert:(IJD)V
         3: .line 345
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
         4: .line 347
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 5 /* pos */
            daload
            dstore 6 /* oldValue */
        start local 6 // double oldValue
         5: .line 348
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 5 /* pos */
            dload 3 /* v */
            dastore
         6: .line 349
            dload 6 /* oldValue */
            dreturn
        end local 6 // double oldValue
        end local 5 // int pos
        end local 3 // double v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    7     1         k  J
            0    7     3         v  D
            1    7     5       pos  I
            5    7     6  oldValue  D
    MethodParameters:
      Name  Flags
      k     final
      v     final

  private double addToValue(int, double);
    descriptor: (ID)D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int pos
        start local 2 // double incr
         0: .line 352
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 1 /* pos */
            daload
            dstore 4 /* oldValue */
        start local 4 // double oldValue
         1: .line 353
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 1 /* pos */
            dload 4 /* oldValue */
            dload 2 /* incr */
            dadd
            dastore
         2: .line 354
            dload 4 /* oldValue */
            dreturn
        end local 4 // double oldValue
        end local 2 // double incr
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    3     1       pos  I
            0    3     2      incr  D
            1    3     4  oldValue  D
    MethodParameters:
      Name  Flags
      pos   final
      incr  final

  public double addTo(long, double);
    descriptor: (JD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=9, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // double incr
         0: .line 374
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 6
         1: .line 375
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 3
         2: .line 376
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            dload 3 /* incr */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.addToValue:(ID)D
            dreturn
         3: .line 377
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            istore 5 /* pos */
        start local 5 // int pos
         4: .line 378
            aload 0 /* this */
            iconst_1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
         5: .line 379
            goto 15
        end local 5 // int pos
         6: .line 381
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 8 /* key */
        start local 8 // long[] key
         7: .line 383
            aload 8 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 5 /* pos */
        start local 5 // int pos
         8: laload
            dup2
            lstore 6 /* curr */
        start local 6 // long curr
         9: lconst_0
            lcmp
            ifeq 15
        10: .line 384
            lload 6 /* curr */
            lload 1 /* k */
            lcmp
            ifne 14
        11: .line 385
            aload 0 /* this */
            iload 5 /* pos */
            dload 3 /* incr */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.addToValue:(ID)D
            dreturn
        12: .line 387
      StackMap locals: int long long[]
      StackMap stack:
            lload 6 /* curr */
            lload 1 /* k */
            lcmp
            ifne 14
        13: .line 388
            aload 0 /* this */
            iload 5 /* pos */
            dload 3 /* incr */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.addToValue:(ID)D
            dreturn
        14: .line 386
      StackMap locals:
      StackMap stack:
            aload 8 /* key */
            iload 5 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 5 /* pos */
            laload
            dup2
            lstore 6 /* curr */
            lconst_0
            lcmp
            ifne 12
        end local 8 // long[] key
        end local 6 // long curr
        15: .line 391
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            iload 5 /* pos */
            lload 1 /* k */
            lastore
        16: .line 392
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 5 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dload 3 /* incr */
            dadd
            dastore
        17: .line 393
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ifne 21
        18: .line 394
            aload 0 /* this */
            aload 0 /* this */
            iload 5 /* pos */
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
        19: .line 396
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* pos */
            ldc -1
            lastore
        20: .line 397
            goto 24
        21: .line 398
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            laload
            iload 5 /* pos */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        22: .line 399
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            ldc 4294967295
            lor
            lastore
        23: .line 400
            aload 0 /* this */
            iload 5 /* pos */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
        24: .line 402
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            dup_x1
            iconst_1
            iadd
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.maxFill:I
            if_icmplt 26
        25: .line 403
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.rehash:(I)V
        26: .line 406
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        end local 5 // int pos
        end local 3 // double incr
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   27     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   27     1     k  J
            0   27     3  incr  D
            4    6     5   pos  I
            8   27     5   pos  I
            9   15     6  curr  J
            7   15     8   key  [J
    MethodParameters:
      Name  Flags
      k     final
      incr  final

  protected final void shiftKeys(int);
    descriptor: (I)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int pos
         0: .line 419
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 6 /* key */
        start local 6 // long[] key
         1: .line 421
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap int top top top top long[]
      StackMap stack:
            iload 1 /* pos */
            dup
            istore 2 /* last */
        start local 2 // int last
         2: iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            istore 1 /* pos */
         3: .line 423
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap int int top top top long[]
      StackMap stack:
            aload 6 /* key */
            iload 1 /* pos */
            laload
            dup2
            lstore 4 /* curr */
        start local 4 // long curr
         4: lconst_0
            lcmp
            ifne 7
         5: .line 424
            aload 6 /* key */
            iload 2 /* last */
            lconst_0
            lastore
         6: .line 425
            return
         7: .line 427
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap int int top long long[]
      StackMap stack:
            lload 4 /* curr */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            istore 3 /* slot */
        start local 3 // int slot
         8: .line 428
            iload 2 /* last */
            iload 1 /* pos */
            if_icmpgt 9
            iload 2 /* last */
            iload 3 /* slot */
            if_icmpge 13
            iload 3 /* slot */
            iload 1 /* pos */
            if_icmple 11
            goto 13
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap int int int long long[]
      StackMap stack:
         9: iload 2 /* last */
            iload 3 /* slot */
            if_icmplt 11
            iload 3 /* slot */
            iload 1 /* pos */
            if_icmple 11
        10: .line 429
            goto 13
        11: .line 430
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            istore 1 /* pos */
        end local 4 // long curr
        end local 3 // int slot
        12: .line 422
            goto 3
        start local 3 // int slot
        start local 4 // long curr
        13: .line 432
      StackMap locals:
      StackMap stack:
            aload 6 /* key */
            iload 2 /* last */
            lload 4 /* curr */
            lastore
        14: .line 433
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 2 /* last */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 1 /* pos */
            daload
            dastore
        15: .line 434
            aload 0 /* this */
            iload 1 /* pos */
            iload 2 /* last */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.fixPointers:(II)V
        end local 4 // long curr
        end local 3 // int slot
        end local 2 // int last
        16: .line 420
            goto 1
        end local 6 // long[] key
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   17     1   pos  I
            2   16     2  last  I
            8   12     3  slot  I
           13   16     3  slot  I
            4   12     4  curr  J
           13   16     4  curr  J
            1   17     6   key  [J
    MethodParameters:
      Name  Flags
      pos   

  public double remove(long);
    descriptor: (J)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
         0: .line 440
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 4
         1: .line 441
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 3
         2: .line 442
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeNullEntry:()D
            dreturn
         3: .line 443
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
         4: .line 446
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 5 /* key */
        start local 5 // long[] key
         5: .line 449
            aload 5 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
        start local 6 // int pos
         6: laload
            dup2
            lstore 3 /* curr */
        start local 3 // long curr
         7: lconst_0
            lcmp
            ifne 9
         8: .line 450
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
         9: .line 451
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        10: .line 452
            aload 0 /* this */
            iload 6 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeEntry:(I)D
            dreturn
        11: .line 454
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 6 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
            laload
            dup2
            lstore 3 /* curr */
            lconst_0
            lcmp
            ifne 13
        12: .line 455
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        13: .line 456
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        14: .line 457
            aload 0 /* this */
            iload 6 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeEntry:(I)D
            dreturn
        end local 6 // int pos
        end local 5 // long[] key
        end local 3 // long curr
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   15     1     k  J
            7   15     3  curr  J
            5   15     5   key  [J
            6   15     6   pos  I
    MethodParameters:
      Name  Flags
      k     final

  private double setValue(int, double);
    descriptor: (ID)D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int pos
        start local 2 // double v
         0: .line 461
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 1 /* pos */
            daload
            dstore 4 /* oldValue */
        start local 4 // double oldValue
         1: .line 462
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 1 /* pos */
            dload 2 /* v */
            dastore
         2: .line 463
            dload 4 /* oldValue */
            dreturn
        end local 4 // double oldValue
        end local 2 // double v
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    3     1       pos  I
            0    3     2         v  D
            1    3     4  oldValue  D
    MethodParameters:
      Name  Flags
      pos   final
      v     final

  public double removeFirstDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 474
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ifne 2
         1: .line 475
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 476
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            istore 1 /* pos */
        start local 1 // int pos
         3: .line 478
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* pos */
            laload
            l2i
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
         4: .line 479
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            iflt 6
         5: .line 481
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            dup2
            laload
            ldc -4294967296
            lor
            lastore
         6: .line 483
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
         7: .line 484
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 1 /* pos */
            daload
            dstore 2 /* v */
        start local 2 // double v
         8: .line 485
            iload 1 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            if_icmpne 11
         9: .line 486
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
        10: .line 487
            goto 12
        11: .line 488
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.shiftKeys:(I)V
        12: .line 489
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.minN:I
            if_icmple 14
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.maxFill:I
            iconst_4
            idiv
            if_icmpge 14
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            bipush 16
            if_icmple 14
        13: .line 490
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_2
            idiv
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.rehash:(I)V
        14: .line 491
      StackMap locals:
      StackMap stack:
            dload 2 /* v */
            dreturn
        end local 2 // double v
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            3   15     1   pos  I
            8   15     2     v  D

  public double removeLastDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 501
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ifne 2
         1: .line 502
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 503
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            istore 1 /* pos */
        start local 1 // int pos
         3: .line 505
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* pos */
            laload
            bipush 32
            lushr
            l2i
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
         4: .line 506
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            iflt 6
         5: .line 508
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            dup2
            laload
            ldc 4294967295
            lor
            lastore
         6: .line 510
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
         7: .line 511
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 1 /* pos */
            daload
            dstore 2 /* v */
        start local 2 // double v
         8: .line 512
            iload 1 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            if_icmpne 11
         9: .line 513
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
        10: .line 514
            goto 12
        11: .line 515
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.shiftKeys:(I)V
        12: .line 516
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.minN:I
            if_icmple 14
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.maxFill:I
            iconst_4
            idiv
            if_icmpge 14
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            bipush 16
            if_icmple 14
        13: .line 517
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_2
            idiv
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.rehash:(I)V
        14: .line 518
      StackMap locals:
      StackMap stack:
            dload 2 /* v */
            dreturn
        end local 2 // double v
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            3   15     1   pos  I
            8   15     2     v  D

  private void moveIndexToFirst(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=6, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int i
         0: .line 521
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            iconst_1
            if_icmpeq 1
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            iload 1 /* i */
            if_icmpne 2
         1: .line 522
      StackMap locals:
      StackMap stack:
            return
         2: .line 523
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            iload 1 /* i */
            if_icmpne 6
         3: .line 524
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            bipush 32
            lushr
            l2i
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
         4: .line 526
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            dup2
            laload
            ldc 4294967295
            lor
            lastore
         5: .line 527
            goto 11
         6: .line 528
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            lstore 2 /* linki */
        start local 2 // long linki
         7: .line 529
            lload 2 /* linki */
            bipush 32
            lushr
            l2i
            istore 4 /* prev */
        start local 4 // int prev
         8: .line 530
            lload 2 /* linki */
            l2i
            istore 5 /* next */
        start local 5 // int next
         9: .line 531
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            laload
            lload 2 /* linki */
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        10: .line 532
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* next */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* next */
            laload
            lload 2 /* linki */
            ldc -4294967296
            land
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        end local 5 // int next
        end local 4 // int prev
        end local 2 // long linki
        11: .line 534
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            laload
            iload 1 /* i */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        12: .line 535
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* i */
            ldc -4294967296
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            i2l
            ldc 4294967295
            land
            lor
            lastore
        13: .line 536
            aload 0 /* this */
            iload 1 /* i */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
        14: .line 537
            return
        end local 1 // int i
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   15     1      i  I
            7   11     2  linki  J
            8   11     4   prev  I
            9   11     5   next  I
    MethodParameters:
      Name  Flags
      i     final

  private void moveIndexToLast(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=6, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int i
         0: .line 539
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            iconst_1
            if_icmpeq 1
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            iload 1 /* i */
            if_icmpne 2
         1: .line 540
      StackMap locals:
      StackMap stack:
            return
         2: .line 541
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            iload 1 /* i */
            if_icmpne 6
         3: .line 542
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            l2i
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
         4: .line 544
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            dup2
            laload
            ldc -4294967296
            lor
            lastore
         5: .line 545
            goto 11
         6: .line 546
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            lstore 2 /* linki */
        start local 2 // long linki
         7: .line 547
            lload 2 /* linki */
            bipush 32
            lushr
            l2i
            istore 4 /* prev */
        start local 4 // int prev
         8: .line 548
            lload 2 /* linki */
            l2i
            istore 5 /* next */
        start local 5 // int next
         9: .line 549
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            laload
            lload 2 /* linki */
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        10: .line 550
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* next */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* next */
            laload
            lload 2 /* linki */
            ldc -4294967296
            land
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        end local 5 // int next
        end local 4 // int prev
        end local 2 // long linki
        11: .line 552
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            laload
            iload 1 /* i */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        12: .line 553
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* i */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            ldc 4294967295
            lor
            lastore
        13: .line 554
            aload 0 /* this */
            iload 1 /* i */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
        14: .line 555
            return
        end local 1 // int i
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   15     1      i  I
            7   11     2  linki  J
            8   11     4   prev  I
            9   11     5   next  I
    MethodParameters:
      Name  Flags
      i     final

  public double getAndMoveToFirst(long);
    descriptor: (J)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
         0: .line 566
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 5
         1: .line 567
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
         2: .line 568
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToFirst:(I)V
         3: .line 569
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            daload
            dreturn
         4: .line 571
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
         5: .line 574
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 5 /* key */
        start local 5 // long[] key
         6: .line 577
            aload 5 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
        start local 6 // int pos
         7: laload
            dup2
            lstore 3 /* curr */
        start local 3 // long curr
         8: lconst_0
            lcmp
            ifne 10
         9: .line 578
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        10: .line 579
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 13
        11: .line 580
            aload 0 /* this */
            iload 6 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToFirst:(I)V
        12: .line 581
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 6 /* pos */
            daload
            dreturn
        13: .line 585
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 6 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
            laload
            dup2
            lstore 3 /* curr */
            lconst_0
            lcmp
            ifne 15
        14: .line 586
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        15: .line 587
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 13
        16: .line 588
            aload 0 /* this */
            iload 6 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToFirst:(I)V
        17: .line 589
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 6 /* pos */
            daload
            dreturn
        end local 6 // int pos
        end local 5 // long[] key
        end local 3 // long curr
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   18     1     k  J
            8   18     3  curr  J
            6   18     5   key  [J
            7   18     6   pos  I
    MethodParameters:
      Name  Flags
      k     final

  public double getAndMoveToLast(long);
    descriptor: (J)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
         0: .line 603
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 5
         1: .line 604
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
         2: .line 605
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToLast:(I)V
         3: .line 606
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            daload
            dreturn
         4: .line 608
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
         5: .line 611
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 5 /* key */
        start local 5 // long[] key
         6: .line 614
            aload 5 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
        start local 6 // int pos
         7: laload
            dup2
            lstore 3 /* curr */
        start local 3 // long curr
         8: lconst_0
            lcmp
            ifne 10
         9: .line 615
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        10: .line 616
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 13
        11: .line 617
            aload 0 /* this */
            iload 6 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToLast:(I)V
        12: .line 618
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 6 /* pos */
            daload
            dreturn
        13: .line 622
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 6 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
            laload
            dup2
            lstore 3 /* curr */
            lconst_0
            lcmp
            ifne 15
        14: .line 623
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        15: .line 624
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 13
        16: .line 625
            aload 0 /* this */
            iload 6 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToLast:(I)V
        17: .line 626
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 6 /* pos */
            daload
            dreturn
        end local 6 // int pos
        end local 5 // long[] key
        end local 3 // long curr
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   18     1     k  J
            8   18     3  curr  J
            6   18     5   key  [J
            7   18     6   pos  I
    MethodParameters:
      Name  Flags
      k     final

  public double putAndMoveToFirst(long, double);
    descriptor: (JD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=9, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // double v
         0: .line 643
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 7
         1: .line 644
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
         2: .line 645
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToFirst:(I)V
         3: .line 646
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            dload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.setValue:(ID)D
            dreturn
         4: .line 648
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
         5: .line 649
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            istore 5 /* pos */
        start local 5 // int pos
         6: .line 650
            goto 18
        end local 5 // int pos
         7: .line 652
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 8 /* key */
        start local 8 // long[] key
         8: .line 654
            aload 8 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 5 /* pos */
        start local 5 // int pos
         9: laload
            dup2
            lstore 6 /* curr */
        start local 6 // long curr
        10: lconst_0
            lcmp
            ifeq 18
        11: .line 655
            lload 6 /* curr */
            lload 1 /* k */
            lcmp
            ifne 17
        12: .line 656
            aload 0 /* this */
            iload 5 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToFirst:(I)V
        13: .line 657
            aload 0 /* this */
            iload 5 /* pos */
            dload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.setValue:(ID)D
            dreturn
        14: .line 660
      StackMap locals: int long long[]
      StackMap stack:
            lload 6 /* curr */
            lload 1 /* k */
            lcmp
            ifne 17
        15: .line 661
            aload 0 /* this */
            iload 5 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToFirst:(I)V
        16: .line 662
            aload 0 /* this */
            iload 5 /* pos */
            dload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.setValue:(ID)D
            dreturn
        17: .line 659
      StackMap locals:
      StackMap stack:
            aload 8 /* key */
            iload 5 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 5 /* pos */
            laload
            dup2
            lstore 6 /* curr */
            lconst_0
            lcmp
            ifne 14
        end local 8 // long[] key
        end local 6 // long curr
        18: .line 666
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            iload 5 /* pos */
            lload 1 /* k */
            lastore
        19: .line 667
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 5 /* pos */
            dload 3 /* v */
            dastore
        20: .line 668
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ifne 24
        21: .line 669
            aload 0 /* this */
            aload 0 /* this */
            iload 5 /* pos */
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
        22: .line 671
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* pos */
            ldc -1
            lastore
        23: .line 672
            goto 27
        24: .line 673
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            laload
            iload 5 /* pos */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        25: .line 674
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* pos */
            ldc -4294967296
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            i2l
            ldc 4294967295
            land
            lor
            lastore
        26: .line 675
            aload 0 /* this */
            iload 5 /* pos */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
        27: .line 677
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            dup_x1
            iconst_1
            iadd
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.maxFill:I
            if_icmplt 29
        28: .line 678
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.rehash:(I)V
        29: .line 681
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        end local 5 // int pos
        end local 3 // double v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   30     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   30     1     k  J
            0   30     3     v  D
            6    7     5   pos  I
            9   30     5   pos  I
           10   18     6  curr  J
            8   18     8   key  [J
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public double putAndMoveToLast(long, double);
    descriptor: (JD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=9, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // double v
         0: .line 696
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 7
         1: .line 697
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
         2: .line 698
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToLast:(I)V
         3: .line 699
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            dload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.setValue:(ID)D
            dreturn
         4: .line 701
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
         5: .line 702
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            istore 5 /* pos */
        start local 5 // int pos
         6: .line 703
            goto 18
        end local 5 // int pos
         7: .line 705
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 8 /* key */
        start local 8 // long[] key
         8: .line 707
            aload 8 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 5 /* pos */
        start local 5 // int pos
         9: laload
            dup2
            lstore 6 /* curr */
        start local 6 // long curr
        10: lconst_0
            lcmp
            ifeq 18
        11: .line 708
            lload 6 /* curr */
            lload 1 /* k */
            lcmp
            ifne 17
        12: .line 709
            aload 0 /* this */
            iload 5 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToLast:(I)V
        13: .line 710
            aload 0 /* this */
            iload 5 /* pos */
            dload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.setValue:(ID)D
            dreturn
        14: .line 713
      StackMap locals: int long long[]
      StackMap stack:
            lload 6 /* curr */
            lload 1 /* k */
            lcmp
            ifne 17
        15: .line 714
            aload 0 /* this */
            iload 5 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.moveIndexToLast:(I)V
        16: .line 715
            aload 0 /* this */
            iload 5 /* pos */
            dload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.setValue:(ID)D
            dreturn
        17: .line 712
      StackMap locals:
      StackMap stack:
            aload 8 /* key */
            iload 5 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 5 /* pos */
            laload
            dup2
            lstore 6 /* curr */
            lconst_0
            lcmp
            ifne 14
        end local 8 // long[] key
        end local 6 // long curr
        18: .line 719
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            iload 5 /* pos */
            lload 1 /* k */
            lastore
        19: .line 720
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 5 /* pos */
            dload 3 /* v */
            dastore
        20: .line 721
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ifne 24
        21: .line 722
            aload 0 /* this */
            aload 0 /* this */
            iload 5 /* pos */
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
        22: .line 724
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* pos */
            ldc -1
            lastore
        23: .line 725
            goto 27
        24: .line 726
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            laload
            iload 5 /* pos */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        25: .line 727
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            ldc 4294967295
            lor
            lastore
        26: .line 728
            aload 0 /* this */
            iload 5 /* pos */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
        27: .line 730
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            dup_x1
            iconst_1
            iadd
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.maxFill:I
            if_icmplt 29
        28: .line 731
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.rehash:(I)V
        29: .line 734
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        end local 5 // int pos
        end local 3 // double v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   30     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   30     1     k  J
            0   30     3     v  D
            6    7     5   pos  I
            9   30     5   pos  I
           10   18     6  curr  J
            8   18     8   key  [J
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public double get(long);
    descriptor: (J)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
         0: .line 739
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 4
         1: .line 740
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            daload
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
      StackMap locals:
      StackMap stack: double
         3: dreturn
         4: .line 742
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 5 /* key */
        start local 5 // long[] key
         5: .line 745
            aload 5 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
        start local 6 // int pos
         6: laload
            dup2
            lstore 3 /* curr */
        start local 3 // long curr
         7: lconst_0
            lcmp
            ifne 9
         8: .line 746
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
         9: .line 747
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        10: .line 748
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 6 /* pos */
            daload
            dreturn
        11: .line 751
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 6 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
            laload
            dup2
            lstore 3 /* curr */
            lconst_0
            lcmp
            ifne 13
        12: .line 752
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        13: .line 753
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        14: .line 754
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 6 /* pos */
            daload
            dreturn
        end local 6 // int pos
        end local 5 // long[] key
        end local 3 // long curr
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   15     1     k  J
            7   15     3  curr  J
            5   15     5   key  [J
            6   15     6   pos  I
    MethodParameters:
      Name  Flags
      k     final

  public boolean containsKey(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
         0: .line 760
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 2
         1: .line 761
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ireturn
         2: .line 763
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 5 /* key */
        start local 5 // long[] key
         3: .line 766
            aload 5 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
        start local 6 // int pos
         4: laload
            dup2
            lstore 3 /* curr */
        start local 3 // long curr
         5: lconst_0
            lcmp
            ifne 7
         6: .line 767
            iconst_0
            ireturn
         7: .line 768
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 9
         8: .line 769
            iconst_1
            ireturn
         9: .line 772
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 6 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
            laload
            dup2
            lstore 3 /* curr */
            lconst_0
            lcmp
            ifne 11
        10: .line 773
            iconst_0
            ireturn
        11: .line 774
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 9
        12: .line 775
            iconst_1
            ireturn
        end local 6 // int pos
        end local 5 // long[] key
        end local 3 // long curr
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   13     1     k  J
            5   13     3  curr  J
            3   13     5   key  [J
            4   13     6   pos  I
    MethodParameters:
      Name  Flags
      k     final

  public boolean containsValue(double);
    descriptor: (D)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // double v
         0: .line 780
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            astore 3 /* value */
        start local 3 // double[] value
         1: .line 781
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 4 /* key */
        start local 4 // long[] key
         2: .line 782
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
            aload 3 /* value */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            dload 1 /* v */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 4
         3: .line 783
            iconst_1
            ireturn
         4: .line 784
      StackMap locals: double[] long[]
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            istore 5 /* i */
        start local 5 // int i
         5: goto 8
         6: .line 785
      StackMap locals: int
      StackMap stack:
            aload 4 /* key */
            iload 5 /* i */
            laload
            lconst_0
            lcmp
            ifeq 8
            aload 3 /* value */
            iload 5 /* i */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            dload 1 /* v */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 8
         7: .line 786
            iconst_1
            ireturn
         8: .line 784
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iinc 5 /* i */ -1
            ifne 6
        end local 5 // int i
         9: .line 787
            iconst_0
            ireturn
        end local 4 // long[] key
        end local 3 // double[] value
        end local 1 // double v
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   10     1      v  D
            1   10     3  value  [D
            2   10     4    key  [J
            5    9     5      i  I
    MethodParameters:
      Name  Flags
      v     final

  public double getOrDefault(long, double);
    descriptor: (JD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // double defaultValue
         0: .line 793
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 4
         1: .line 794
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            daload
            goto 3
      StackMap locals:
      StackMap stack:
         2: dload 3 /* defaultValue */
      StackMap locals:
      StackMap stack: double
         3: dreturn
         4: .line 796
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 7 /* key */
        start local 7 // long[] key
         5: .line 799
            aload 7 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 8 /* pos */
        start local 8 // int pos
         6: laload
            dup2
            lstore 5 /* curr */
        start local 5 // long curr
         7: lconst_0
            lcmp
            ifne 9
         8: .line 800
            dload 3 /* defaultValue */
            dreturn
         9: .line 801
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 5 /* curr */
            lcmp
            ifne 11
        10: .line 802
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 8 /* pos */
            daload
            dreturn
        11: .line 805
      StackMap locals:
      StackMap stack:
            aload 7 /* key */
            iload 8 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 8 /* pos */
            laload
            dup2
            lstore 5 /* curr */
            lconst_0
            lcmp
            ifne 13
        12: .line 806
            dload 3 /* defaultValue */
            dreturn
        13: .line 807
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 5 /* curr */
            lcmp
            ifne 11
        14: .line 808
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 8 /* pos */
            daload
            dreturn
        end local 8 // int pos
        end local 7 // long[] key
        end local 5 // long curr
        end local 3 // double defaultValue
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   15     1             k  J
            0   15     3  defaultValue  D
            7   15     5          curr  J
            5   15     7           key  [J
            6   15     8           pos  I
    MethodParameters:
              Name  Flags
      k             final
      defaultValue  final

  public double putIfAbsent(long, double);
    descriptor: (JD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // double v
         0: .line 814
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.find:(J)I
            istore 5 /* pos */
        start local 5 // int pos
         1: .line 815
            iload 5 /* pos */
            iflt 3
         2: .line 816
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 5 /* pos */
            daload
            dreturn
         3: .line 817
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 5 /* pos */
            ineg
            iconst_1
            isub
            lload 1 /* k */
            dload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.insert:(IJD)V
         4: .line 818
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        end local 5 // int pos
        end local 3 // double v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    5     1     k  J
            0    5     3     v  D
            1    5     5   pos  I
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public boolean remove(long, double);
    descriptor: (JD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // double v
         0: .line 824
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 5
         1: .line 825
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
            dload 3 /* v */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 4
         2: .line 826
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeNullEntry:()D
            pop2
         3: .line 827
            iconst_1
            ireturn
         4: .line 829
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         5: .line 832
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 7 /* key */
        start local 7 // long[] key
         6: .line 835
            aload 7 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 8 /* pos */
        start local 8 // int pos
         7: laload
            dup2
            lstore 5 /* curr */
        start local 5 // long curr
         8: lconst_0
            lcmp
            ifne 10
         9: .line 836
            iconst_0
            ireturn
        10: .line 837
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 5 /* curr */
            lcmp
            ifne 13
            dload 3 /* v */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 8 /* pos */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 13
        11: .line 838
            aload 0 /* this */
            iload 8 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeEntry:(I)D
            pop2
        12: .line 839
            iconst_1
            ireturn
        13: .line 842
      StackMap locals:
      StackMap stack:
            aload 7 /* key */
            iload 8 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            dup
            istore 8 /* pos */
            laload
            dup2
            lstore 5 /* curr */
            lconst_0
            lcmp
            ifne 15
        14: .line 843
            iconst_0
            ireturn
        15: .line 844
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 5 /* curr */
            lcmp
            ifne 13
            dload 3 /* v */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 8 /* pos */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 13
        16: .line 845
            aload 0 /* this */
            iload 8 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeEntry:(I)D
            pop2
        17: .line 846
            iconst_1
            ireturn
        end local 8 // int pos
        end local 7 // long[] key
        end local 5 // long curr
        end local 3 // double v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   18     1     k  J
            0   18     3     v  D
            8   18     5  curr  J
            6   18     7   key  [J
            7   18     8   pos  I
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public boolean replace(long, double, double);
    descriptor: (JDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // double oldValue
        start local 5 // double v
         0: .line 853
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.find:(J)I
            istore 7 /* pos */
        start local 7 // int pos
         1: .line 854
            iload 7 /* pos */
            iflt 2
            dload 3 /* oldValue */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 7 /* pos */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifeq 3
         2: .line 855
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
         3: .line 856
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 7 /* pos */
            dload 5 /* v */
            dastore
         4: .line 857
            iconst_1
            ireturn
        end local 7 // int pos
        end local 5 // double v
        end local 3 // double oldValue
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    5     1         k  J
            0    5     3  oldValue  D
            0    5     5         v  D
            1    5     7       pos  I
    MethodParameters:
          Name  Flags
      k         final
      oldValue  final
      v         final

  public double replace(long, double);
    descriptor: (JD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // double v
         0: .line 862
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.find:(J)I
            istore 5 /* pos */
        start local 5 // int pos
         1: .line 863
            iload 5 /* pos */
            ifge 3
         2: .line 864
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
         3: .line 865
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 5 /* pos */
            daload
            dstore 6 /* oldValue */
        start local 6 // double oldValue
         4: .line 866
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 5 /* pos */
            dload 3 /* v */
            dastore
         5: .line 867
            dload 6 /* oldValue */
            dreturn
        end local 6 // double oldValue
        end local 5 // int pos
        end local 3 // double v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    6     1         k  J
            0    6     3         v  D
            1    6     5       pos  I
            4    6     6  oldValue  D
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public double computeIfAbsent(long, java.util.function.LongToDoubleFunction);
    descriptor: (JLjava/util/function/LongToDoubleFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // java.util.function.LongToDoubleFunction mappingFunction
         0: .line 872
            aload 3 /* mappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 873
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.find:(J)I
            istore 4 /* pos */
        start local 4 // int pos
         2: .line 874
            iload 4 /* pos */
            iflt 4
         3: .line 875
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 4 /* pos */
            daload
            dreturn
         4: .line 876
      StackMap locals: int
      StackMap stack:
            aload 3 /* mappingFunction */
            lload 1 /* k */
            invokeinterface java.util.function.LongToDoubleFunction.applyAsDouble:(J)D
            dstore 5 /* newValue */
        start local 5 // double newValue
         5: .line 877
            aload 0 /* this */
            iload 4 /* pos */
            ineg
            iconst_1
            isub
            lload 1 /* k */
            dload 5 /* newValue */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.insert:(IJD)V
         6: .line 878
            dload 5 /* newValue */
            dreturn
        end local 5 // double newValue
        end local 4 // int pos
        end local 3 // java.util.function.LongToDoubleFunction mappingFunction
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    7     0             this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    7     1                k  J
            0    7     3  mappingFunction  Ljava/util/function/LongToDoubleFunction;
            2    7     4              pos  I
            5    7     5         newValue  D
    MethodParameters:
                 Name  Flags
      k                final
      mappingFunction  final

  public double computeIfAbsentNullable(long, java.util.function.LongFunction<? extends java.lang.Double>);
    descriptor: (JLjava/util/function/LongFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // java.util.function.LongFunction mappingFunction
         0: .line 884
            aload 3 /* mappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 885
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.find:(J)I
            istore 4 /* pos */
        start local 4 // int pos
         2: .line 886
            iload 4 /* pos */
            iflt 4
         3: .line 887
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 4 /* pos */
            daload
            dreturn
         4: .line 888
      StackMap locals: int
      StackMap stack:
            aload 3 /* mappingFunction */
            lload 1 /* k */
            invokeinterface java.util.function.LongFunction.apply:(J)Ljava/lang/Object;
            checkcast java.lang.Double
            astore 5 /* newValue */
        start local 5 // java.lang.Double newValue
         5: .line 889
            aload 5 /* newValue */
            ifnonnull 7
         6: .line 890
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
         7: .line 891
      StackMap locals: java.lang.Double
      StackMap stack:
            aload 5 /* newValue */
            invokevirtual java.lang.Double.doubleValue:()D
            dstore 6 /* v */
        start local 6 // double v
         8: .line 892
            aload 0 /* this */
            iload 4 /* pos */
            ineg
            iconst_1
            isub
            lload 1 /* k */
            dload 6 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.insert:(IJD)V
         9: .line 893
            dload 6 /* v */
            dreturn
        end local 6 // double v
        end local 5 // java.lang.Double newValue
        end local 4 // int pos
        end local 3 // java.util.function.LongFunction mappingFunction
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   10     0             this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   10     1                k  J
            0   10     3  mappingFunction  Ljava/util/function/LongFunction<+Ljava/lang/Double;>;
            2   10     4              pos  I
            5   10     5         newValue  Ljava/lang/Double;
            8   10     6                v  D
    Signature: (JLjava/util/function/LongFunction<+Ljava/lang/Double;>;)D
    MethodParameters:
                 Name  Flags
      k                final
      mappingFunction  final

  public double computeIfPresent(long, java.util.function.BiFunction<? super java.lang.Long, ? super java.lang.Double, ? extends java.lang.Double>);
    descriptor: (JLjava/util/function/BiFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // java.util.function.BiFunction remappingFunction
         0: .line 899
            aload 3 /* remappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 900
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.find:(J)I
            istore 4 /* pos */
        start local 4 // int pos
         2: .line 901
            iload 4 /* pos */
            ifge 4
         3: .line 902
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
         4: .line 903
      StackMap locals: int
      StackMap stack:
            aload 3 /* remappingFunction */
            lload 1 /* k */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 4 /* pos */
            daload
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Double
            astore 5 /* newValue */
        start local 5 // java.lang.Double newValue
         5: .line 904
            aload 5 /* newValue */
            ifnonnull 10
         6: .line 905
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 8
         7: .line 906
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeNullEntry:()D
            pop2
            goto 9
         8: .line 908
      StackMap locals: java.lang.Double
      StackMap stack:
            aload 0 /* this */
            iload 4 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeEntry:(I)D
            pop2
         9: .line 909
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        10: .line 911
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 4 /* pos */
            aload 5 /* newValue */
            invokevirtual java.lang.Double.doubleValue:()D
            dup2_x2
            dastore
            dreturn
        end local 5 // java.lang.Double newValue
        end local 4 // int pos
        end local 3 // java.util.function.BiFunction remappingFunction
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   11     0               this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   11     1                  k  J
            0   11     3  remappingFunction  Ljava/util/function/BiFunction<-Ljava/lang/Long;-Ljava/lang/Double;+Ljava/lang/Double;>;
            2   11     4                pos  I
            5   11     5           newValue  Ljava/lang/Double;
    Signature: (JLjava/util/function/BiFunction<-Ljava/lang/Long;-Ljava/lang/Double;+Ljava/lang/Double;>;)D
    MethodParameters:
                   Name  Flags
      k                  final
      remappingFunction  final

  public double compute(long, java.util.function.BiFunction<? super java.lang.Long, ? super java.lang.Double, ? extends java.lang.Double>);
    descriptor: (JLjava/util/function/BiFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // java.util.function.BiFunction remappingFunction
         0: .line 917
            aload 3 /* remappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 918
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.find:(J)I
            istore 4 /* pos */
        start local 4 // int pos
         2: .line 919
            aload 3 /* remappingFunction */
            lload 1 /* k */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            iload 4 /* pos */
            iflt 3
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 4 /* pos */
            daload
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            goto 4
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap long java.util.function.BiFunction int
      StackMap stack: java.util.function.BiFunction java.lang.Long
         3: aconst_null
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap long java.util.function.BiFunction int
      StackMap stack: java.util.function.BiFunction java.lang.Long java.lang.Double
         4: invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Double
            astore 5 /* newValue */
        start local 5 // java.lang.Double newValue
         5: .line 920
            aload 5 /* newValue */
            ifnonnull 11
         6: .line 921
            iload 4 /* pos */
            iflt 10
         7: .line 922
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 9
         8: .line 923
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeNullEntry:()D
            pop2
            goto 10
         9: .line 925
      StackMap locals: java.lang.Double
      StackMap stack:
            aload 0 /* this */
            iload 4 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeEntry:(I)D
            pop2
        10: .line 927
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        11: .line 929
      StackMap locals:
      StackMap stack:
            aload 5 /* newValue */
            invokevirtual java.lang.Double.doubleValue:()D
            dstore 6 /* newVal */
        start local 6 // double newVal
        12: .line 930
            iload 4 /* pos */
            ifge 15
        13: .line 931
            aload 0 /* this */
            iload 4 /* pos */
            ineg
            iconst_1
            isub
            lload 1 /* k */
            dload 6 /* newVal */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.insert:(IJD)V
        14: .line 932
            dload 6 /* newVal */
            dreturn
        15: .line 934
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 4 /* pos */
            dload 6 /* newVal */
            dup2_x2
            dastore
            dreturn
        end local 6 // double newVal
        end local 5 // java.lang.Double newValue
        end local 4 // int pos
        end local 3 // java.util.function.BiFunction remappingFunction
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   16     0               this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   16     1                  k  J
            0   16     3  remappingFunction  Ljava/util/function/BiFunction<-Ljava/lang/Long;-Ljava/lang/Double;+Ljava/lang/Double;>;
            2   16     4                pos  I
            5   16     5           newValue  Ljava/lang/Double;
           12   16     6             newVal  D
    Signature: (JLjava/util/function/BiFunction<-Ljava/lang/Long;-Ljava/lang/Double;+Ljava/lang/Double;>;)D
    MethodParameters:
                   Name  Flags
      k                  final
      remappingFunction  final

  public double merge(long, double, java.util.function.BiFunction<? super java.lang.Double, ? super java.lang.Double, ? extends java.lang.Double>);
    descriptor: (JDLjava/util/function/BiFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long k
        start local 3 // double v
        start local 5 // java.util.function.BiFunction remappingFunction
         0: .line 940
            aload 5 /* remappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 941
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.find:(J)I
            istore 6 /* pos */
        start local 6 // int pos
         2: .line 942
            iload 6 /* pos */
            ifge 5
         3: .line 943
            aload 0 /* this */
            iload 6 /* pos */
            ineg
            iconst_1
            isub
            lload 1 /* k */
            dload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.insert:(IJD)V
         4: .line 944
            dload 3 /* v */
            dreturn
         5: .line 946
      StackMap locals: int
      StackMap stack:
            aload 5 /* remappingFunction */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 6 /* pos */
            daload
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            dload 3 /* v */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Double
            astore 7 /* newValue */
        start local 7 // java.lang.Double newValue
         6: .line 947
            aload 7 /* newValue */
            ifnonnull 11
         7: .line 948
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 9
         8: .line 949
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeNullEntry:()D
            pop2
            goto 10
         9: .line 951
      StackMap locals: java.lang.Double
      StackMap stack:
            aload 0 /* this */
            iload 6 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.removeEntry:(I)D
            pop2
        10: .line 952
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.defRetValue:D
            dreturn
        11: .line 954
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 6 /* pos */
            aload 7 /* newValue */
            invokevirtual java.lang.Double.doubleValue:()D
            dup2_x2
            dastore
            dreturn
        end local 7 // java.lang.Double newValue
        end local 6 // int pos
        end local 5 // java.util.function.BiFunction remappingFunction
        end local 3 // double v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   12     0               this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   12     1                  k  J
            0   12     3                  v  D
            0   12     5  remappingFunction  Ljava/util/function/BiFunction<-Ljava/lang/Double;-Ljava/lang/Double;+Ljava/lang/Double;>;
            2   12     6                pos  I
            6   12     7           newValue  Ljava/lang/Double;
    Signature: (JDLjava/util/function/BiFunction<-Ljava/lang/Double;-Ljava/lang/Double;+Ljava/lang/Double;>;)D
    MethodParameters:
                   Name  Flags
      k                  final
      v                  final
      remappingFunction  final

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 965
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ifne 2
         1: .line 966
            return
         2: .line 967
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
         3: .line 968
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
         4: .line 969
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            lconst_0
            invokestatic java.util.Arrays.fill:([JJ)V
         5: .line 970
            aload 0 /* this */
            aload 0 /* this */
            iconst_m1
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
         6: .line 971
            return
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 974
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ireturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 978
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  protected void fixPointers(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=10, locals=6, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int i
         0: .line 1065
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ifne 3
         1: .line 1066
            aload 0 /* this */
            aload 0 /* this */
            iconst_m1
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
         2: .line 1067
            return
         3: .line 1069
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            iload 1 /* i */
            if_icmpne 8
         4: .line 1070
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            l2i
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
         5: .line 1071
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            iflt 7
         6: .line 1073
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            dup2
            laload
            ldc -4294967296
            lor
            lastore
         7: .line 1075
      StackMap locals:
      StackMap stack:
            return
         8: .line 1077
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            iload 1 /* i */
            if_icmpne 13
         9: .line 1078
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            bipush 32
            lushr
            l2i
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
        10: .line 1079
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            iflt 12
        11: .line 1081
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            dup2
            laload
            ldc 4294967295
            lor
            lastore
        12: .line 1083
      StackMap locals:
      StackMap stack:
            return
        13: .line 1085
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            lstore 2 /* linki */
        start local 2 // long linki
        14: .line 1086
            lload 2 /* linki */
            bipush 32
            lushr
            l2i
            istore 4 /* prev */
        start local 4 // int prev
        15: .line 1087
            lload 2 /* linki */
            l2i
            istore 5 /* next */
        start local 5 // int next
        16: .line 1088
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            laload
            lload 2 /* linki */
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        17: .line 1089
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* next */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* next */
            laload
            lload 2 /* linki */
            ldc -4294967296
            land
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        18: .line 1090
            return
        end local 5 // int next
        end local 4 // int prev
        end local 2 // long linki
        end local 1 // int i
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   19     1      i  I
           14   19     2  linki  J
           15   19     4   prev  I
           16   19     5   next  I
    MethodParameters:
      Name  Flags
      i     final

  protected void fixPointers(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=10, locals=7, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int s
        start local 2 // int d
         0: .line 1102
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            iconst_1
            if_icmpne 4
         1: .line 1103
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* d */
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
         2: .line 1105
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 2 /* d */
            ldc -1
            lastore
         3: .line 1106
            return
         4: .line 1108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            iload 1 /* s */
            if_icmpne 9
         5: .line 1109
            aload 0 /* this */
            iload 2 /* d */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
         6: .line 1110
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            l2i
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            l2i
            laload
            iload 2 /* d */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
         7: .line 1111
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 2 /* d */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            lastore
         8: .line 1112
            return
         9: .line 1114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            iload 1 /* s */
            if_icmpne 14
        10: .line 1115
            aload 0 /* this */
            iload 2 /* d */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
        11: .line 1116
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            bipush 32
            lushr
            l2i
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            bipush 32
            lushr
            l2i
            laload
            iload 2 /* d */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        12: .line 1117
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 2 /* d */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            lastore
        13: .line 1118
            return
        14: .line 1120
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            lstore 3 /* links */
        start local 3 // long links
        15: .line 1121
            lload 3 /* links */
            bipush 32
            lushr
            l2i
            istore 5 /* prev */
        start local 5 // int prev
        16: .line 1122
            lload 3 /* links */
            l2i
            istore 6 /* next */
        start local 6 // int next
        17: .line 1123
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* prev */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 5 /* prev */
            laload
            iload 2 /* d */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        18: .line 1124
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 6 /* next */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 6 /* next */
            laload
            iload 2 /* d */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        19: .line 1125
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            iload 2 /* d */
            lload 3 /* links */
            lastore
        20: .line 1126
            return
        end local 6 // int next
        end local 5 // int prev
        end local 3 // long links
        end local 2 // int d
        end local 1 // int s
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   21     0   this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   21     1      s  I
            0   21     2      d  I
           15   21     3  links  J
           16   21     5   prev  I
           17   21     6   next  I
    MethodParameters:
      Name  Flags
      s     
      d     

  public long firstLongKey();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 1134
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ifne 2
         1: .line 1135
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 1136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            laload
            lreturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  public long lastLongKey();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 1145
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            ifne 2
         1: .line 1146
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 1147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            laload
            lreturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  public it.unimi.dsi.fastutil.longs.Long2DoubleSortedMap tailMap(long);
    descriptor: (J)Lit/unimi/dsi/fastutil/longs/Long2DoubleSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long from
         0: .line 1156
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // long from
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    1     1  from  J
    MethodParameters:
      Name  Flags
      from  

  public it.unimi.dsi.fastutil.longs.Long2DoubleSortedMap headMap(long);
    descriptor: (J)Lit/unimi/dsi/fastutil/longs/Long2DoubleSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long to
         0: .line 1165
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // long to
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    1     1    to  J
    MethodParameters:
      Name  Flags
      to    

  public it.unimi.dsi.fastutil.longs.Long2DoubleSortedMap subMap(long, long);
    descriptor: (JJ)Lit/unimi/dsi/fastutil/longs/Long2DoubleSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // long from
        start local 3 // long to
         0: .line 1174
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 3 // long to
        end local 1 // long from
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    1     1  from  J
            0    1     3    to  J
    MethodParameters:
      Name  Flags
      from  
      to    

  public it.unimi.dsi.fastutil.longs.LongComparator comparator();
    descriptor: ()Lit/unimi/dsi/fastutil/longs/LongComparator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 1183
            aconst_null
            areturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  public it.unimi.dsi.fastutil.longs.Long2DoubleSortedMap$FastSortedEntrySet long2DoubleEntrySet();
    descriptor: ()Lit/unimi/dsi/fastutil/longs/Long2DoubleSortedMap$FastSortedEntrySet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 1598
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.entries:Lit/unimi/dsi/fastutil/longs/Long2DoubleSortedMap$FastSortedEntrySet;
            ifnonnull 2
         1: .line 1599
            aload 0 /* this */
            new it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapEntrySet
            dup
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapEntrySet.<init>:(Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;)V
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.entries:Lit/unimi/dsi/fastutil/longs/Long2DoubleSortedMap$FastSortedEntrySet;
         2: .line 1600
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.entries:Lit/unimi/dsi/fastutil/longs/Long2DoubleSortedMap$FastSortedEntrySet;
            areturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  public it.unimi.dsi.fastutil.longs.LongSortedSet keySet();
    descriptor: ()Lit/unimi/dsi/fastutil/longs/LongSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 1696
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.keys:Lit/unimi/dsi/fastutil/longs/LongSortedSet;
            ifnonnull 2
         1: .line 1697
            aload 0 /* this */
            new it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$KeySet
            dup
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$KeySet.<init>:(Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;)V
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.keys:Lit/unimi/dsi/fastutil/longs/LongSortedSet;
         2: .line 1698
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.keys:Lit/unimi/dsi/fastutil/longs/LongSortedSet;
            areturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  public it.unimi.dsi.fastutil.doubles.DoubleCollection values();
    descriptor: ()Lit/unimi/dsi/fastutil/doubles/DoubleCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 1724
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.values:Lit/unimi/dsi/fastutil/doubles/DoubleCollection;
            ifnonnull 2
         1: .line 1725
            aload 0 /* this */
            new it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$1
            dup
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$1.<init>:(Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;)V
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.values:Lit/unimi/dsi/fastutil/doubles/DoubleCollection;
         2: .line 1752
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.values:Lit/unimi/dsi/fastutil/doubles/DoubleCollection;
            areturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  public boolean trim();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 1769
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.trim:(I)Z
            ireturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  public boolean trim(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int n
         0: .line 1793
            iload 1 /* n */
            i2f
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            fdiv
            f2d
            invokestatic java.lang.Math.ceil:(D)D
            d2i
            invokestatic it.unimi.dsi.fastutil.HashCommon.nextPowerOfTwo:(I)I
            istore 2 /* l */
        start local 2 // int l
         1: .line 1794
            iload 2 /* l */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            if_icmpge 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            iload 2 /* l */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            if_icmple 3
         2: .line 1795
      StackMap locals: int
      StackMap stack:
            iconst_1
            ireturn
         3: .line 1797
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* l */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.rehash:(I)V
         4: .line 1798
            goto 7
      StackMap locals:
      StackMap stack: java.lang.OutOfMemoryError
         5: pop
         6: .line 1799
            iconst_0
            ireturn
         7: .line 1801
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // int l
        end local 1 // int n
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0    8     1     n  I
            1    8     2     l  I
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.OutOfMemoryError
    MethodParameters:
      Name  Flags
      n     final

  protected void rehash(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=10, locals=15, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // int newN
         0: .line 1817
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 2 /* key */
        start local 2 // long[] key
         1: .line 1818
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            astore 3 /* value */
        start local 3 // double[] value
         2: .line 1819
            iload 1 /* newN */
            iconst_1
            isub
            istore 4 /* mask */
        start local 4 // int mask
         3: .line 1820
            iload 1 /* newN */
            iconst_1
            iadd
            newarray 11
            astore 5 /* newKey */
        start local 5 // long[] newKey
         4: .line 1821
            iload 1 /* newN */
            iconst_1
            iadd
            newarray 7
            astore 6 /* newValue */
        start local 6 // double[] newValue
         5: .line 1822
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            istore 7 /* i */
        start local 7 // int i
         6: iconst_m1
            istore 8 /* prev */
        start local 8 // int prev
         7: iconst_m1
            istore 9 /* newPrev */
        start local 9 // int newPrev
         8: .line 1823
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            astore 12 /* link */
        start local 12 // long[] link
         9: .line 1824
            iload 1 /* newN */
            iconst_1
            iadd
            newarray 11
            astore 13 /* newLink */
        start local 13 // long[] newLink
        10: .line 1825
            aload 0 /* this */
            iconst_m1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
        11: .line 1826
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            istore 14 /* j */
        start local 14 // int j
        12: goto 32
        13: .line 1827
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap int long[] double[] int long[] double[] int int int top top long[] long[] int
      StackMap stack:
            aload 2 /* key */
            iload 7 /* i */
            laload
            lconst_0
            lcmp
            ifne 16
        14: .line 1828
            iload 1 /* newN */
            istore 11 /* pos */
        start local 11 // int pos
        15: goto 20
        end local 11 // int pos
        16: .line 1830
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            iload 7 /* i */
            laload
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            iload 4 /* mask */
            iand
            istore 11 /* pos */
        start local 11 // int pos
        17: .line 1831
            goto 19
        18: .line 1832
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap int long[] double[] int long[] double[] int int int top int long[] long[] int
      StackMap stack:
            iload 11 /* pos */
            iconst_1
            iadd
            iload 4 /* mask */
            iand
            istore 11 /* pos */
        19: .line 1831
      StackMap locals:
      StackMap stack:
            aload 5 /* newKey */
            iload 11 /* pos */
            laload
            lconst_0
            lcmp
            ifne 18
        20: .line 1834
      StackMap locals:
      StackMap stack:
            aload 5 /* newKey */
            iload 11 /* pos */
            aload 2 /* key */
            iload 7 /* i */
            laload
            lastore
        21: .line 1835
            aload 6 /* newValue */
            iload 11 /* pos */
            aload 3 /* value */
            iload 7 /* i */
            daload
            dastore
        22: .line 1836
            iload 8 /* prev */
            iconst_m1
            if_icmpeq 27
        23: .line 1837
            aload 13 /* newLink */
            iload 9 /* newPrev */
            dup2
            laload
            aload 13 /* newLink */
            iload 9 /* newPrev */
            laload
            iload 11 /* pos */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        24: .line 1838
            aload 13 /* newLink */
            iload 11 /* pos */
            dup2
            laload
            aload 13 /* newLink */
            iload 11 /* pos */
            laload
            iload 9 /* newPrev */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        25: .line 1839
            iload 11 /* pos */
            istore 9 /* newPrev */
        26: .line 1840
            goto 29
        27: .line 1841
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 11 /* pos */
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            istore 9 /* newPrev */
        28: .line 1843
            aload 13 /* newLink */
            iload 11 /* pos */
            ldc -1
            lastore
        29: .line 1845
      StackMap locals:
      StackMap stack:
            iload 7 /* i */
            istore 10 /* t */
        start local 10 // int t
        30: .line 1846
            aload 12 /* link */
            iload 7 /* i */
            laload
            l2i
            istore 7 /* i */
        31: .line 1847
            iload 10 /* t */
            istore 8 /* prev */
        end local 11 // int pos
        end local 10 // int t
        32: .line 1826
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap int long[] double[] int long[] double[] int int int top top long[] long[] int
      StackMap stack:
            iload 14 /* j */
            iinc 14 /* j */ -1
            ifne 13
        end local 14 // int j
        33: .line 1849
            aload 0 /* this */
            aload 13 /* newLink */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
        34: .line 1850
            aload 0 /* this */
            iload 9 /* newPrev */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
        35: .line 1851
            iload 9 /* newPrev */
            iconst_m1
            if_icmpeq 37
        36: .line 1853
            aload 13 /* newLink */
            iload 9 /* newPrev */
            dup2
            laload
            ldc 4294967295
            lor
            lastore
        37: .line 1854
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* newN */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
        38: .line 1855
            aload 0 /* this */
            iload 4 /* mask */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
        39: .line 1856
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.maxFill:I
        40: .line 1857
            aload 0 /* this */
            aload 5 /* newKey */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
        41: .line 1858
            aload 0 /* this */
            aload 6 /* newValue */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
        42: .line 1859
            return
        end local 13 // long[] newLink
        end local 12 // long[] link
        end local 9 // int newPrev
        end local 8 // int prev
        end local 7 // int i
        end local 6 // double[] newValue
        end local 5 // long[] newKey
        end local 4 // int mask
        end local 3 // double[] value
        end local 2 // long[] key
        end local 1 // int newN
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   43     0      this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   43     1      newN  I
            1   43     2       key  [J
            2   43     3     value  [D
            3   43     4      mask  I
            4   43     5    newKey  [J
            5   43     6  newValue  [D
            6   43     7         i  I
            7   43     8      prev  I
            8   43     9   newPrev  I
           30   32    10         t  I
           15   16    11       pos  I
           17   32    11       pos  I
            9   43    12      link  [J
           10   43    13   newLink  [J
           12   33    14         j  I
    MethodParameters:
      Name  Flags
      newN  final

  public it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap clone();
    descriptor: ()Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 1875
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap
            astore 1 /* c */
        start local 1 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap c
         1: .line 1876
            goto 4
        end local 1 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap c
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
         2: pop
         3: .line 1877
            new java.lang.InternalError
            dup
            invokespecial java.lang.InternalError.<init>:()V
            athrow
        start local 1 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap c
         4: .line 1879
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap
      StackMap stack:
            aload 1 /* c */
            aconst_null
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.keys:Lit/unimi/dsi/fastutil/longs/LongSortedSet;
         5: .line 1880
            aload 1 /* c */
            aconst_null
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.values:Lit/unimi/dsi/fastutil/doubles/DoubleCollection;
         6: .line 1881
            aload 1 /* c */
            aconst_null
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.entries:Lit/unimi/dsi/fastutil/longs/Long2DoubleSortedMap$FastSortedEntrySet;
         7: .line 1882
            aload 1 /* c */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
         8: .line 1883
            aload 1 /* c */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            invokevirtual long[].clone:()Ljava/lang/Object;
            checkcast long[]
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
         9: .line 1884
            aload 1 /* c */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            invokevirtual double[].clone:()Ljava/lang/Object;
            checkcast double[]
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
        10: .line 1885
            aload 1 /* c */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            invokevirtual long[].clone:()Ljava/lang/Object;
            checkcast long[]
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
        11: .line 1886
            aload 1 /* c */
            areturn
        end local 1 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap c
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            1    2     1     c  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            4   12     1     c  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.CloneNotSupportedException

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 1899
            iconst_0
            istore 1 /* h */
        start local 1 // int h
         1: .line 1900
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.realSize:()I
            istore 2 /* j */
        start local 2 // int j
         2: iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: iconst_0
            istore 4 /* t */
        start local 4 // int t
         4: goto 11
         5: .line 1902
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap int int int int
      StackMap stack:
            iinc 3 /* i */ 1
         6: .line 1901
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            iload 3 /* i */
            laload
            lconst_0
            lcmp
            ifeq 5
         7: .line 1903
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            iload 3 /* i */
            laload
            invokestatic it.unimi.dsi.fastutil.HashCommon.long2int:(J)I
            istore 4 /* t */
         8: .line 1904
            iload 4 /* t */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            iload 3 /* i */
            daload
            invokestatic it.unimi.dsi.fastutil.HashCommon.double2int:(D)I
            ixor
            istore 4 /* t */
         9: .line 1905
            iload 1 /* h */
            iload 4 /* t */
            iadd
            istore 1 /* h */
        10: .line 1906
            iinc 3 /* i */ 1
        11: .line 1900
      StackMap locals:
      StackMap stack:
            iload 2 /* j */
            iinc 2 /* j */ -1
            ifne 6
        end local 4 // int t
        end local 3 // int i
        end local 2 // int j
        12: .line 1909
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
            ifeq 14
        13: .line 1910
            iload 1 /* h */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            daload
            invokestatic it.unimi.dsi.fastutil.HashCommon.double2int:(D)I
            iadd
            istore 1 /* h */
        14: .line 1911
      StackMap locals:
      StackMap stack:
            iload 1 /* h */
            ireturn
        end local 1 // int h
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            1   15     1     h  I
            2   12     2     j  I
            3   12     3     i  I
            4   12     4     t  I

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // java.io.ObjectOutputStream s
         0: .line 1914
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 2 /* key */
        start local 2 // long[] key
         1: .line 1915
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            astore 3 /* value */
        start local 3 // double[] value
         2: .line 1916
            new it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapIterator
            dup
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapIterator.<init>:(Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;)V
            astore 4 /* i */
        start local 4 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapIterator i
         3: .line 1917
            aload 1 /* s */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         4: .line 1918
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            istore 5 /* j */
        start local 5 // int j
         5: goto 9
         6: .line 1919
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap java.io.ObjectOutputStream long[] double[] it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapIterator int
      StackMap stack:
            aload 4 /* i */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapIterator.nextEntry:()I
            istore 6 /* e */
        start local 6 // int e
         7: .line 1920
            aload 1 /* s */
            aload 2 /* key */
            iload 6 /* e */
            laload
            invokevirtual java.io.ObjectOutputStream.writeLong:(J)V
         8: .line 1921
            aload 1 /* s */
            aload 3 /* value */
            iload 6 /* e */
            daload
            invokevirtual java.io.ObjectOutputStream.writeDouble:(D)V
        end local 6 // int e
         9: .line 1918
      StackMap locals:
      StackMap stack:
            iload 5 /* j */
            iinc 5 /* j */ -1
            ifne 6
        end local 5 // int j
        10: .line 1923
            return
        end local 4 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapIterator i
        end local 3 // double[] value
        end local 2 // long[] key
        end local 1 // java.io.ObjectOutputStream s
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   11     1      s  Ljava/io/ObjectOutputStream;
            1   11     2    key  [J
            2   11     3  value  [D
            3   11     4      i  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap$MapIterator;
            5   10     5      j  I
            7    9     6      e  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=12, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
        start local 1 // java.io.ObjectInputStream s
         0: .line 1926
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 1927
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
         2: .line 1928
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.maxFill:I
         3: .line 1929
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
         4: .line 1930
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 11
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.key:[J
            astore 2 /* key */
        start local 2 // long[] key
         5: .line 1931
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 7
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.value:[D
            astore 3 /* value */
        start local 3 // double[] value
         6: .line 1932
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 11
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.link:[J
            astore 4 /* link */
        start local 4 // long[] link
         7: .line 1933
            iconst_m1
            istore 5 /* prev */
        start local 5 // int prev
         8: .line 1934
            aload 0 /* this */
            aload 0 /* this */
            iconst_m1
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
         9: .line 1937
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.size:I
            istore 10 /* i */
        start local 10 // int i
        10: goto 30
        11: .line 1938
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap java.io.ObjectInputStream long[] double[] long[] int top top top top int
      StackMap stack:
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readLong:()J
            lstore 6 /* k */
        start local 6 // long k
        12: .line 1939
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readDouble:()D
            dstore 8 /* v */
        start local 8 // double v
        13: .line 1940
            lload 6 /* k */
            lconst_0
            lcmp
            ifne 17
        14: .line 1941
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.n:I
            istore 11 /* pos */
        start local 11 // int pos
        15: .line 1942
            aload 0 /* this */
            iconst_1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.containsNullKey:Z
        16: .line 1943
            goto 21
        end local 11 // int pos
        17: .line 1944
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap java.io.ObjectInputStream long[] double[] long[] int long double int
      StackMap stack:
            lload 6 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            istore 11 /* pos */
        start local 11 // int pos
        18: .line 1945
            goto 20
        19: .line 1946
      StackMap locals: int
      StackMap stack:
            iload 11 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.mask:I
            iand
            istore 11 /* pos */
        20: .line 1945
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            iload 11 /* pos */
            laload
            lconst_0
            lcmp
            ifne 19
        21: .line 1948
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            iload 11 /* pos */
            lload 6 /* k */
            lastore
        22: .line 1949
            aload 3 /* value */
            iload 11 /* pos */
            dload 8 /* v */
            dastore
        23: .line 1950
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            iconst_m1
            if_icmpeq 28
        24: .line 1951
            aload 4 /* link */
            iload 5 /* prev */
            dup2
            laload
            aload 4 /* link */
            iload 5 /* prev */
            laload
            iload 11 /* pos */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        25: .line 1952
            aload 4 /* link */
            iload 11 /* pos */
            dup2
            laload
            aload 4 /* link */
            iload 11 /* pos */
            laload
            iload 5 /* prev */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        26: .line 1953
            iload 11 /* pos */
            istore 5 /* prev */
        27: .line 1954
            goto 30
        28: .line 1955
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 11 /* pos */
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.first:I
            istore 5 /* prev */
        29: .line 1957
            aload 4 /* link */
            iload 11 /* pos */
            dup2
            laload
            ldc -4294967296
            lor
            lastore
        end local 11 // int pos
        end local 8 // double v
        end local 6 // long k
        30: .line 1937
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap java.io.ObjectInputStream long[] double[] long[] int top top top top int
      StackMap stack:
            iload 10 /* i */
            iinc 10 /* i */ -1
            ifne 11
        end local 10 // int i
        31: .line 1960
            aload 0 /* this */
            iload 5 /* prev */
            putfield it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.last:I
        32: .line 1961
            iload 5 /* prev */
            iconst_m1
            if_icmpeq 34
        33: .line 1963
            aload 4 /* link */
            iload 5 /* prev */
            dup2
            laload
            ldc 4294967295
            lor
            lastore
        34: .line 1966
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap java.io.ObjectInputStream long[] double[] long[] int
      StackMap stack:
            return
        end local 5 // int prev
        end local 4 // long[] link
        end local 3 // double[] value
        end local 2 // long[] key
        end local 1 // java.io.ObjectInputStream s
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   35     0   this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            0   35     1      s  Ljava/io/ObjectInputStream;
            5   35     2    key  [J
            6   35     3  value  [D
            7   35     4   link  [J
            8   35     5   prev  I
           12   30     6      k  J
           13   30     8      v  D
           10   31    10      i  I
           15   17    11    pos  I
           18   30    11    pos  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      s     

  private void checkTable();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
         0: .line 1968
            return
        end local 0 // it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;

  public java.util.Set keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.keySet:()Lit/unimi/dsi/fastutil/longs/LongSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public it.unimi.dsi.fastutil.longs.LongSet keySet();
    descriptor: ()Lit/unimi/dsi/fastutil/longs/LongSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.keySet:()Lit/unimi/dsi/fastutil/longs/LongSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.Comparator comparator();
    descriptor: ()Ljava/util/Comparator;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.comparator:()Lit/unimi/dsi/fastutil/longs/LongComparator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.Collection values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.values:()Lit/unimi/dsi/fastutil/doubles/DoubleCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public it.unimi.dsi.fastutil.objects.ObjectSet long2DoubleEntrySet();
    descriptor: ()Lit/unimi/dsi/fastutil/objects/ObjectSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.long2DoubleEntrySet:()Lit/unimi/dsi/fastutil/longs/Long2DoubleSortedMap$FastSortedEntrySet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public it.unimi.dsi.fastutil.objects.ObjectSortedSet long2DoubleEntrySet();
    descriptor: ()Lit/unimi/dsi/fastutil/objects/ObjectSortedSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.long2DoubleEntrySet:()Lit/unimi/dsi/fastutil/longs/Long2DoubleSortedMap$FastSortedEntrySet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap.clone:()Lit/unimi/dsi/fastutil/longs/Long2DoubleLinkedOpenHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "Long2DoubleLinkedOpenHashMap.java"
NestMembers:
  it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$1  it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$EntryIterator  it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$FastEntryIterator  it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$KeyIterator  it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$KeySet  it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapEntry  it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapEntrySet  it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapIterator  it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$ValueIterator
InnerClasses:
  it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$1
  private EntryIterator = it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$EntryIterator of it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap
  private FastEntryIterator = it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$FastEntryIterator of it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap
  private final KeyIterator = it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$KeyIterator of it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap
  private final KeySet = it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$KeySet of it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap
  final MapEntry = it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapEntry of it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap
  private final MapEntrySet = it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapEntrySet of it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap
  private MapIterator = it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$MapIterator of it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap
  private final ValueIterator = it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap$ValueIterator of it.unimi.dsi.fastutil.longs.Long2DoubleLinkedOpenHashMap
  public abstract Entry = it.unimi.dsi.fastutil.longs.Long2DoubleMap$Entry of it.unimi.dsi.fastutil.longs.Long2DoubleMap
  public abstract FastSortedEntrySet = it.unimi.dsi.fastutil.longs.Long2DoubleSortedMap$FastSortedEntrySet of it.unimi.dsi.fastutil.longs.Long2DoubleSortedMap