public class org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack extends org.eclipse.collections.impl.stack.primitive.AbstractDoubleStack implements org.eclipse.collections.api.stack.primitive.MutableDoubleStack, java.io.Externalizable
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
super_class: org.eclipse.collections.impl.stack.primitive.AbstractDoubleStack
{
private static final long serialVersionUID;
descriptor: J
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 1
private transient org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList delegate;
descriptor: Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
invokespecial org.eclipse.collections.impl.stack.primitive.AbstractDoubleStack.<init>:()V
1: aload 0
new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
dup
invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:()V
putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
2: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
private void <init>(int);
descriptor: (I)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
invokespecial org.eclipse.collections.impl.stack.primitive.AbstractDoubleStack.<init>:()V
1: aload 0
new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
dup
iload 1
invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:(I)V
putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
2: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
0 3 1 size I
MethodParameters:
Name Flags
size
private void <init>(double[]);
descriptor: ([D)V
flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
invokespecial org.eclipse.collections.impl.stack.primitive.AbstractDoubleStack.<init>:()V
1: aload 0
new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
dup
aload 1
invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:([D)V
putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
2: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
0 3 1 items [D
MethodParameters:
Name Flags
items
public static org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack newStackFromTopToBottom(double[]);
descriptor: ([D)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
Code:
stack=3, locals=3, args_size=1
start local 0 0: new org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
dup
aload 0
arraylength
invokespecial org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.<init>:(I)V
astore 1
start local 1 1: aload 0
arraylength
iconst_1
isub
istore 2
start local 2 2: goto 5
3: StackMap locals: org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack int
StackMap stack:
aload 1
aload 0
iload 2
daload
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.push:(D)V
4: iinc 2 -1
StackMap locals:
StackMap stack:
5: iload 2
ifge 3
end local 2 6: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 items [D
1 7 1 stack Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
2 6 2 i I
MethodParameters:
Name Flags
items
public static org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack newStackWith(double[]);
descriptor: ([D)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
dup
aload 0
invokespecial org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.<init>:([D)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 items [D
MethodParameters:
Name Flags
items
public static org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack newStack(org.eclipse.collections.api.DoubleIterable);
descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=2, args_size=1
start local 0 0: new org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
dup
aload 0
invokeinterface org.eclipse.collections.api.DoubleIterable.size:()I
invokespecial org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.<init>:(I)V
astore 1
start local 1 1: aload 1
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;
putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
2: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 items Lorg/eclipse/collections/api/DoubleIterable;
1 3 1 stack Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
MethodParameters:
Name Flags
items
public static org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack newStackFromTopToBottom(org.eclipse.collections.api.DoubleIterable);
descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=2, args_size=1
start local 0 0: new org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
dup
aload 0
invokeinterface org.eclipse.collections.api.DoubleIterable.size:()I
invokespecial org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.<init>:(I)V
astore 1
start local 1 1: aload 1
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;
invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.reverseThis:()Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
2: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 items Lorg/eclipse/collections/api/DoubleIterable;
1 3 1 stack Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
MethodParameters:
Name Flags
items
protected org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList getDelegate();
descriptor: ()Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
flags: (0x0004) ACC_PROTECTED
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate: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/stack/mutable/primitive/DoubleArrayStack;
public void push(double);
descriptor: (D)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
dload 1
invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.add:(D)Z
pop
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
0 2 1 item D
MethodParameters:
Name Flags
item
public double pop();
descriptor: ()D
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.checkEmptyStack:()V
1: aload 0
getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
aload 0
getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.size:()I
iconst_1
isub
invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.removeAtIndex:(I)D
dreturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
public org.eclipse.collections.api.list.primitive.DoubleList pop(int);
descriptor: (I)Lorg/eclipse/collections/api/list/primitive/DoubleList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.checkPositiveValueForCount:(I)V
1: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.checkSizeLessThanCount:(I)V
2: iload 1
ifne 4
3: new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
dup
iconst_0
invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:(I)V
areturn
4: StackMap locals:
StackMap stack:
new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
dup
iload 1
invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:(I)V
astore 2
start local 2 5: goto 8
6: StackMap locals: org.eclipse.collections.api.list.primitive.MutableDoubleList
StackMap stack:
aload 2
aload 0
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.pop:()D
invokeinterface org.eclipse.collections.api.list.primitive.MutableDoubleList.add:(D)Z
pop
7: iinc 1 -1
8: StackMap locals:
StackMap stack:
iload 1
ifgt 6
9: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
0 10 1 count I
5 10 2 subList Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
MethodParameters:
Name Flags
count
public org.eclipse.collections.api.stack.primitive.MutableDoubleStack select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.asReversed:()Lorg/eclipse/collections/api/LazyDoubleIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyDoubleIterable.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/LazyDoubleIterable;
invokestatic org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.api.stack.primitive.MutableDoubleStack reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.asReversed:()Lorg/eclipse/collections/api/LazyDoubleIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyDoubleIterable.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/LazyDoubleIterable;
invokestatic org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
MethodParameters:
Name Flags
predicate
public <V> org.eclipse.collections.api.stack.MutableStack<V> collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction<? extends V>);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/stack/MutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.asReversed:()Lorg/eclipse/collections/api/LazyDoubleIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyDoubleIterable.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/LazyIterable;
invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
0 1 1 function Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/stack/MutableStack<TV;>;
MethodParameters:
Name Flags
function
public void clear();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.clear:()V
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
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
invokestatic org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.newList:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.sortThis:()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/stack/mutable/primitive/DoubleArrayStack;
public org.eclipse.collections.api.stack.primitive.MutableDoubleStack asUnmodifiable();
descriptor: ()Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.stack.mutable.primitive.UnmodifiableDoubleStack
dup
aload 0
invokespecial org.eclipse.collections.impl.stack.mutable.primitive.UnmodifiableDoubleStack.<init>:(Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
public org.eclipse.collections.api.stack.primitive.MutableDoubleStack asSynchronized();
descriptor: ()Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.stack.mutable.primitive.SynchronizedDoubleStack
dup
aload 0
invokespecial org.eclipse.collections.impl.stack.mutable.primitive.SynchronizedDoubleStack.<init>:(Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
public org.eclipse.collections.api.stack.primitive.ImmutableDoubleStack toImmutable();
descriptor: ()Lorg/eclipse/collections/api/stack/primitive/ImmutableDoubleStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: getstatic org.eclipse.collections.impl.factory.primitive.DoubleStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableDoubleStackFactory;
aload 0
getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableDoubleStackFactory.withAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableDoubleStack;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
public org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack newEmpty();
descriptor: ()Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack
dup
invokespecial org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.<init>:()V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
public boolean equals(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=2
start local 0 start local 1 0: aload 1
aload 0
if_acmpne 2
1: iconst_1
ireturn
2: StackMap locals:
StackMap stack:
aload 1
instanceof org.eclipse.collections.api.stack.primitive.DoubleStack
ifne 4
3: iconst_0
ireturn
4: StackMap locals:
StackMap stack:
aload 1
checkcast org.eclipse.collections.api.stack.primitive.DoubleStack
astore 2
start local 2 5: aload 0
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.size:()I
aload 2
invokeinterface org.eclipse.collections.api.stack.primitive.DoubleStack.size:()I
if_icmpeq 7
6: iconst_0
ireturn
7: StackMap locals: org.eclipse.collections.api.stack.primitive.DoubleStack
StackMap stack:
iconst_0
istore 3
start local 3 8: goto 12
9: StackMap locals: int
StackMap stack:
aload 0
iload 3
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.peekAt:(I)D
aload 2
iload 3
invokeinterface org.eclipse.collections.api.stack.primitive.DoubleStack.peekAt:(I)D
invokestatic java.lang.Double.compare:(DD)I
ifeq 11
10: iconst_0
ireturn
11: StackMap locals:
StackMap stack:
iinc 3 1
StackMap locals:
StackMap stack:
12: iload 3
aload 0
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.size:()I
if_icmplt 9
end local 3 13: iconst_1
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 14 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
0 14 1 otherStack Ljava/lang/Object;
5 14 2 stack Lorg/eclipse/collections/api/stack/primitive/DoubleStack;
8 13 3 i I
MethodParameters:
Name Flags
otherStack
public int hashCode();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=5, args_size=1
start local 0 0: iconst_1
istore 1
start local 1 1: aload 0
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.size:()I
iconst_1
isub
istore 2
start local 2 2: goto 6
3: StackMap locals: int int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
iload 2
invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.get:(I)D
dstore 3
start local 3 4: bipush 31
iload 1
imul
dload 3
invokestatic java.lang.Double.doubleToLongBits:(D)J
dload 3
invokestatic java.lang.Double.doubleToLongBits:(D)J
bipush 32
lushr
lxor
l2i
iadd
istore 1
end local 3 5: iinc 2 -1
StackMap locals:
StackMap stack:
6: iload 2
ifge 3
end local 2 7: iload 1
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
1 8 1 hashCode I
2 7 2 i I
4 5 3 item D
public void writeExternal(java.io.ObjectOutput);
descriptor: (Ljava/io/ObjectOutput;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=5, args_size=2
start local 0 start local 1 0: aload 1
aload 0
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.size:()I
invokeinterface java.io.ObjectOutput.writeInt:(I)V
1: aload 0
getfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
invokevirtual org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.asReversed:()Lorg/eclipse/collections/api/LazyDoubleIterable;
invokeinterface org.eclipse.collections.api.LazyDoubleIterable.doubleIterator:()Lorg/eclipse/collections/api/iterator/DoubleIterator;
astore 2
start local 2 2: goto 5
3: StackMap locals: org.eclipse.collections.api.iterator.DoubleIterator
StackMap stack:
aload 2
invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
dstore 3
start local 3 4: aload 1
dload 3
invokeinterface java.io.ObjectOutput.writeDouble:(D)V
end local 3 5: StackMap locals:
StackMap stack:
aload 2
invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
ifne 3
6: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
0 7 1 out Ljava/io/ObjectOutput;
2 7 2 iterator Lorg/eclipse/collections/api/iterator/DoubleIterator;
4 5 3 each D
Exceptions:
throws java.io.IOException
MethodParameters:
Name Flags
out
public void readExternal(java.io.ObjectInput);
descriptor: (Ljava/io/ObjectInput;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=5, args_size=2
start local 0 start local 1 0: aload 1
invokeinterface java.io.ObjectInput.readInt:()I
istore 2
start local 2 1: iload 2
newarray 7
astore 3
start local 3 2: iload 2
iconst_1
isub
istore 4
start local 4 3: goto 6
4: StackMap locals: int double[] int
StackMap stack:
aload 3
iload 4
aload 1
invokeinterface java.io.ObjectInput.readDouble:()D
dastore
5: iinc 4 -1
StackMap locals:
StackMap stack:
6: iload 4
ifge 4
end local 4 7: aload 0
aload 3
invokestatic org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.newListWith:([D)Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
putfield org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
8: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
0 9 1 in Ljava/io/ObjectInput;
1 9 2 size I
2 9 3 array [D
3 7 4 i I
Exceptions:
throws java.io.IOException
MethodParameters:
Name Flags
in
public org.eclipse.collections.api.DoubleIterable select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/DoubleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.primitive.OrderedDoubleIterable select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/ordered/primitive/OrderedDoubleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.primitive.DoubleStack select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/DoubleStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/stack/MutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/stack/MutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/stack/MutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.DoubleIterable reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/DoubleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.primitive.OrderedDoubleIterable reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/ordered/primitive/OrderedDoubleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.primitive.DoubleStack reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/DoubleStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.primitive.MutableDoubleStack newEmpty();
descriptor: ()Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.newEmpty:()Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
SourceFile: "DoubleArrayStack.java"