public abstract class org.eclipse.collections.impl.primitive.AbstractDoubleIterable implements org.eclipse.collections.api.DoubleIterable
minor version: 0
major version: 59
flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
this_class: org.eclipse.collections.impl.primitive.AbstractDoubleIterable
super_class: java.lang.Object
{
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokespecial java.lang.Object.<init>:()V
return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
public java.lang.String toString();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=1, args_size=1
start local 0 0: aload 0
ldc "["
ldc ", "
ldc "]"
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.makeString:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
public double minIfEmpty(double);
descriptor: (D)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: aload 0
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.isEmpty:()Z
ifeq 2
1: dload 1
dreturn
2: StackMap locals:
StackMap stack:
aload 0
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.min:()D
dreturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
0 3 1 defaultValue D
MethodParameters:
Name Flags
defaultValue
public double maxIfEmpty(double);
descriptor: (D)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: aload 0
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.isEmpty:()Z
ifeq 2
1: dload 1
dreturn
2: StackMap locals:
StackMap stack:
aload 0
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.max:()D
dreturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
0 3 1 defaultValue D
MethodParameters:
Name Flags
defaultValue
public double average();
descriptor: ()D
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.isEmpty:()Z
ifeq 2
1: new java.lang.ArithmeticException
dup
invokespecial java.lang.ArithmeticException.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
aload 0
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.sum:()D
aload 0
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.size:()I
i2d
ddiv
dreturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
public double median();
descriptor: ()D
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=7, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.isEmpty:()Z
ifeq 2
1: new java.lang.ArithmeticException
dup
invokespecial java.lang.ArithmeticException.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
aload 0
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.toSortedArray:()[D
astore 1
start local 1 3: aload 1
arraylength
iconst_1
ishr
istore 2
start local 2 4: aload 1
arraylength
iconst_1
if_icmple 8
aload 1
arraylength
iconst_1
iand
ifne 8
5: aload 1
iload 2
daload
dstore 3
start local 3 6: aload 1
iload 2
iconst_1
isub
daload
dstore 5
start local 5 7: dload 3
dload 5
dadd
ldc 2.0
ddiv
dreturn
end local 5 end local 3 8: StackMap locals: double[] int
StackMap stack:
aload 1
iload 2
daload
dreturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
3 9 1 sortedArray [D
4 9 2 middleIndex I
6 8 3 first D
7 8 5 second D
public double[] toSortedArray();
descriptor: ()[D
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=2, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.toArray:()[D
astore 1
start local 1 1: aload 1
invokestatic java.util.Arrays.sort:([D)V
2: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
1 3 1 array [D
public org.eclipse.collections.api.list.primitive.MutableDoubleList toSortedList();
descriptor: ()Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.primitive.AbstractDoubleIterable.toList:()Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
invokeinterface org.eclipse.collections.api.list.primitive.MutableDoubleList.sortThis:()Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
public org.eclipse.collections.api.LazyDoubleIterable asLazy();
descriptor: ()Lorg/eclipse/collections/api/LazyDoubleIterable;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.lazy.primitive.LazyDoubleIterableAdapter
dup
aload 0
invokespecial org.eclipse.collections.impl.lazy.primitive.LazyDoubleIterableAdapter.<init>:(Lorg/eclipse/collections/api/DoubleIterable;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
public org.eclipse.collections.api.list.primitive.MutableDoubleList toList();
descriptor: ()Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokestatic org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.newList:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
public org.eclipse.collections.api.set.primitive.MutableDoubleSet toSet();
descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.newSet:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
public org.eclipse.collections.api.bag.primitive.MutableDoubleBag toBag();
descriptor: ()Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokestatic org.eclipse.collections.impl.bag.mutable.primitive.DoubleHashBag.newBag:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/DoubleHashBag;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/primitive/AbstractDoubleIterable;
}
SourceFile: "AbstractDoubleIterable.java"