public abstract class org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter<T> extends org.eclipse.collections.impl.list.mutable.AbstractMutableList<T> implements java.util.RandomAccess
minor version: 0
major version: 59
flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
this_class: org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter
super_class: org.eclipse.collections.impl.list.mutable.AbstractMutableList
{
private static final java.lang.Object[] OBJECTS;
descriptor: [Ljava/lang/Object;
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
protected T[] items;
descriptor: [Ljava/lang/Object;
flags: (0x0004) ACC_PROTECTED
Signature: [TT;
static void <clinit>();
descriptor: ()V
flags: (0x0008) ACC_STATIC
Code:
stack=1, locals=0, args_size=0
0: iconst_0
anewarray java.lang.Object
putstatic org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.OBJECTS:[Ljava/lang/Object;
return
LocalVariableTable:
Start End Slot Name Signature
protected void <init>();
descriptor: ()V
flags: (0x0004) ACC_PROTECTED
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
invokespecial org.eclipse.collections.impl.list.mutable.AbstractMutableList.<init>:()V
1: aload 0
getstatic org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.OBJECTS:[Ljava/lang/Object;
putfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
2: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
protected void <init>();
descriptor: ([Ljava/lang/Object;)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
invokespecial org.eclipse.collections.impl.list.mutable.AbstractMutableList.<init>:()V
1: aload 1
ifnonnull 3
2: new java.lang.IllegalArgumentException
dup
ldc "items cannot be null"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
3: StackMap locals: org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter java.lang.Object[]
StackMap stack:
aload 0
aload 1
putfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
4: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 5 1 newElements [Ljava/lang/Object;
Signature: ([TT;)V
MethodParameters:
Name Flags
newElements
public boolean notEmpty();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
ifle 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
public T getFirst();
descriptor: ()Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.isEmpty:()Z
ifeq 1
aconst_null
goto 2
StackMap locals:
StackMap stack:
1: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
iconst_0
aaload
StackMap locals:
StackMap stack: java.lang.Object
2: areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
Signature: ()TT;
public T getLast();
descriptor: ()Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.isEmpty:()Z
ifeq 1
aconst_null
goto 2
StackMap locals:
StackMap stack:
1: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
iconst_1
isub
aaload
StackMap locals:
StackMap stack: java.lang.Object
2: areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
Signature: ()TT;
public void each(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=2
start local 0 start local 1 0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.size:()I
istore 2
start local 2 1: iconst_0
istore 3
start local 3 2: goto 5
3: StackMap locals: int int
StackMap stack:
aload 1
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
iload 3
aaload
invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
4: iinc 3 1
StackMap locals:
StackMap stack:
5: iload 3
iload 2
if_icmplt 3
end local 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/list/fixed/AbstractArrayAdapter<TT;>;
0 7 1 procedure Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
1 7 2 size I
2 6 3 i I
Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
MethodParameters:
Name Flags
procedure
public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.forEachWithIndex:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 2 1 objectIntProcedure Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
MethodParameters:
Name Flags
objectIntProcedure
public void forEachWithIndex(int, int, org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
descriptor: (IILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: iload 1
iload 2
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
invokestatic org.eclipse.collections.impl.utility.ListIterate.rangeCheck:(III)V
1: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
iload 1
iload 2
aload 3
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.forEachWithIndexWithoutChecks:([Ljava/lang/Object;IILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
2: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 3 1 fromIndex I
0 3 2 toIndex I
0 3 3 objectIntProcedure Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
Signature: (IILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
MethodParameters:
Name Flags
fromIndex
toIndex
objectIntProcedure
public boolean removeIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call removeIf() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
MethodParameters:
Name Flags
predicate
public <P> boolean removeIfWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=3, args_size=3
start local 0 start local 1 start local 2 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call removeIfWith() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Z
MethodParameters:
Name Flags
predicate
parameter
public T detect(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detect:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)TT;
MethodParameters:
Name Flags
predicate
public <P> T detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detectWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)TT;
MethodParameters:
Name Flags
predicate
parameter
public java.util.Optional<T> detectOptional(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detectOptional:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Ljava/util/Optional<TT;>;
MethodParameters:
Name Flags
predicate
public <P> java.util.Optional<T> detectWithOptional(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detectWithOptional:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Ljava/util/Optional<TT;>;
MethodParameters:
Name Flags
predicate
parameter
public int detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detectIndex:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;)I
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)I
MethodParameters:
Name Flags
predicate
public int detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detectLastIndex:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;)I
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)I
MethodParameters:
Name Flags
predicate
public int count(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.count:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;)I
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)I
MethodParameters:
Name Flags
predicate
public <S> boolean corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S>, org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super S>);
descriptor: (Lorg/eclipse/collections/api/ordered/OrderedIterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.corresponds:([Ljava/lang/Object;ILorg/eclipse/collections/api/ordered/OrderedIterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;)Z
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 other Lorg/eclipse/collections/api/ordered/OrderedIterable<TS;>;
0 1 2 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TS;>;
Signature: <S:Ljava/lang/Object;>(Lorg/eclipse/collections/api/ordered/OrderedIterable<TS;>;Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TS;>;)Z
MethodParameters:
Name Flags
other
predicate
public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.anySatisfy:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
MethodParameters:
Name Flags
predicate
public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.allSatisfy:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
MethodParameters:
Name Flags
predicate
public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.noneSatisfy:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
MethodParameters:
Name Flags
predicate
public <IV> IV injectInto(IV, org.eclipse.collections.api.block.function.Function2<? super IV, ? super T, ? extends IV>);
descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 1
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 2
invokestatic org.eclipse.collections.impl.utility.ArrayIterate.injectInto:(Ljava/lang/Object;[Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 injectedValue TIV;
0 1 2 function Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;
Signature: <IV:Ljava/lang/Object;>(TIV;Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;)TIV;
MethodParameters:
Name Flags
injectedValue
function
public <R extends java.util.Collection<T>> R select(org.eclipse.collections.api.block.predicate.Predicate<? super T>, );
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.select:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
0 1 2 target TR;
Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;TR;)TR;
MethodParameters:
Name Flags
predicate
target
public <R extends java.util.Collection<T>> R reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>, );
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.reject:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
0 1 2 target TR;
Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;TR;)TR;
MethodParameters:
Name Flags
predicate
target
public <V> org.eclipse.collections.api.list.MutableList<V> collect(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.size:()I
invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.list.MutableList
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/list/MutableList<TV;>;
MethodParameters:
Name Flags
function
public <V, R extends java.util.Collection<V>> R collect(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, );
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.collect:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
0 1 2 target TR;
Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
MethodParameters:
Name Flags
function
target
public <V, R extends java.util.Collection<V>> R collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, );
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
aload 3
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.collectIf:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
0 1 2 function Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
0 1 3 target TR;
Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
MethodParameters:
Name Flags
predicate
function
target
public <V> org.eclipse.collections.api.list.MutableList<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.flatCollect:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.list.MutableList
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/list/MutableList<TV;>;
MethodParameters:
Name Flags
function
public <V, R extends java.util.Collection<V>> R flatCollect(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>, );
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.flatCollect:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
0 1 2 target TR;
Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;TR;)TR;
MethodParameters:
Name Flags
function
target
public <P> org.eclipse.collections.api.tuple.Twin<org.eclipse.collections.api.list.MutableList<T>> selectAndRejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Twin;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.selectAndRejectWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Twin;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/tuple/Twin<Lorg/eclipse/collections/api/list/MutableList<TT;>;>;
MethodParameters:
Name Flags
predicate
parameter
public int size();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
public boolean isEmpty();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
ifne 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
public boolean contains(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
invokestatic org.eclipse.collections.impl.block.factory.Predicates2.equal:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.anySatisfyWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 o Ljava/lang/Object;
MethodParameters:
Name Flags
o
public java.util.Iterator<T> iterator();
descriptor: ()Ljava/util/Iterator;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
Signature: ()Ljava/util/Iterator<TT;>;
public java.lang.Object[] toArray();
descriptor: ()[Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
checkcast java.lang.Object[]
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
public <E> E[] toArray();
descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=4, args_size=2
start local 0 start local 1 0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.size:()I
istore 2
start local 2 1: aload 1
arraylength
iload 2
if_icmpge 3
2: aload 1
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getComponentType:()Ljava/lang/Class;
iload 2
invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
checkcast java.lang.Object[]
goto 4
3: StackMap locals: int
StackMap stack:
aload 1
4: StackMap locals:
StackMap stack: java.lang.Object[]
astore 3
start local 3 5: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
iconst_0
aload 3
iconst_0
iload 2
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
6: aload 3
arraylength
iload 2
if_icmple 8
7: aload 3
iload 2
aconst_null
aastore
8: StackMap locals: java.lang.Object[]
StackMap stack:
aload 3
areturn
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/list/fixed/AbstractArrayAdapter<TT;>;
0 9 1 array [Ljava/lang/Object;
1 9 2 size I
5 9 3 result [Ljava/lang/Object;
Signature: <E:Ljava/lang/Object;>([TE;)[TE;
MethodParameters:
Name Flags
array
public boolean remove(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call remove() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 o Ljava/lang/Object;
MethodParameters:
Name Flags
o
public boolean containsAll(java.util.Collection<?>);
descriptor: (Ljava/util/Collection;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 1
invokestatic org.eclipse.collections.impl.block.factory.Predicates2.in:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
aload 0
invokestatic org.eclipse.collections.impl.utility.Iterate.allSatisfyWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 collection Ljava/util/Collection<*>;
Signature: (Ljava/util/Collection<*>;)Z
MethodParameters:
Name Flags
collection
public boolean addAll(java.util.Collection<? extends T>);
descriptor: (Ljava/util/Collection;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call addAll() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 collection Ljava/util/Collection<+TT;>;
Signature: (Ljava/util/Collection<+TT;>;)Z
MethodParameters:
Name Flags
collection
public boolean addAllIterable(java.lang.Iterable<? extends T>);
descriptor: (Ljava/lang/Iterable;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call addAllIterable() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 iterable Ljava/lang/Iterable<+TT;>;
Signature: (Ljava/lang/Iterable<+TT;>;)Z
MethodParameters:
Name Flags
iterable
public boolean removeAll(java.util.Collection<?>);
descriptor: (Ljava/util/Collection;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call removeAll() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 collection Ljava/util/Collection<*>;
Signature: (Ljava/util/Collection<*>;)Z
MethodParameters:
Name Flags
collection
public boolean removeAllIterable(java.lang.Iterable<?>);
descriptor: (Ljava/lang/Iterable;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call removeAllIterable() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 iterable Ljava/lang/Iterable<*>;
Signature: (Ljava/lang/Iterable<*>;)Z
MethodParameters:
Name Flags
iterable
public boolean retainAll(java.util.Collection<?>);
descriptor: (Ljava/util/Collection;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call retainAll() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 collection Ljava/util/Collection<*>;
Signature: (Ljava/util/Collection<*>;)Z
MethodParameters:
Name Flags
collection
public boolean retainAllIterable(java.lang.Iterable<?>);
descriptor: (Ljava/lang/Iterable;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call retainAllIterable() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 iterable Ljava/lang/Iterable<*>;
Signature: (Ljava/lang/Iterable<*>;)Z
MethodParameters:
Name Flags
iterable
public void replaceAll(java.util.function.UnaryOperator<T>);
descriptor: (Ljava/util/function/UnaryOperator;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.replaceAll:([Ljava/lang/Object;ILjava/util/function/UnaryOperator;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 2 1 operator Ljava/util/function/UnaryOperator<TT;>;
Signature: (Ljava/util/function/UnaryOperator<TT;>;)V
MethodParameters:
Name Flags
operator
public void sort(java.util.Comparator<? super T>);
descriptor: (Ljava/util/Comparator;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
iconst_0
aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.size:()I
aload 1
invokestatic java.util.Arrays.sort:([Ljava/lang/Object;IILjava/util/Comparator;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 2 1 comparator Ljava/util/Comparator<-TT;>;
Signature: (Ljava/util/Comparator<-TT;>;)V
MethodParameters:
Name Flags
comparator
public void clear();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=1, args_size=1
start local 0 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call clear() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
public boolean addAll(int, java.util.Collection<? extends T>);
descriptor: (ILjava/util/Collection;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=3, args_size=3
start local 0 start local 1 start local 2 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call addAll() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 index I
0 1 2 collection Ljava/util/Collection<+TT;>;
Signature: (ILjava/util/Collection<+TT;>;)Z
MethodParameters:
Name Flags
index
collection
public T get();
descriptor: (I)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: iload 1
aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.size:()I
if_icmplt 2
1: new java.lang.IndexOutOfBoundsException
dup
new java.lang.StringBuilder
dup
ldc "Index: "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
iload 1
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
ldc ", Size: "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.size:()I
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
iload 1
aaload
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 3 1 index I
Signature: (I)TT;
MethodParameters:
Name Flags
index
public void add(int, );
descriptor: (ILjava/lang/Object;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=3, args_size=3
start local 0 start local 1 start local 2 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call add() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 index I
0 1 2 element TT;
Signature: (ITT;)V
MethodParameters:
Name Flags
index
element
public T remove();
descriptor: (I)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call remove() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 index I
Signature: (I)TT;
MethodParameters:
Name Flags
index
public int indexOf(java.lang.Object);
descriptor: (Ljava/lang/Object;)I
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.indexOf:([Ljava/lang/Object;ILjava/lang/Object;)I
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 item Ljava/lang/Object;
MethodParameters:
Name Flags
item
public int lastIndexOf(java.lang.Object);
descriptor: (Ljava/lang/Object;)I
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.lastIndexOf:([Ljava/lang/Object;ILjava/lang/Object;)I
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 item Ljava/lang/Object;
MethodParameters:
Name Flags
item
public java.util.ListIterator<T> listIterator(int);
descriptor: (I)Ljava/util/ListIterator;
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.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
iload 1
invokeinterface java.util.List.listIterator:(I)Ljava/util/ListIterator;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 index I
Signature: (I)Ljava/util/ListIterator<TT;>;
MethodParameters:
Name Flags
index
public org.eclipse.collections.api.list.MutableList<T> subList(int, int);
descriptor: (II)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
iload 1
iload 2
invokeinterface java.util.List.subList:(II)Ljava/util/List;
invokestatic org.eclipse.collections.impl.list.mutable.ListAdapter.adapt:(Ljava/util/List;)Lorg/eclipse/collections/api/list/MutableList;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 fromIndex I
0 1 2 toIndex I
Signature: (II)Lorg/eclipse/collections/api/list/MutableList<TT;>;
MethodParameters:
Name Flags
fromIndex
toIndex
public boolean equals(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, 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 java.util.List
ifne 4
3: iconst_0
ireturn
4: StackMap locals:
StackMap stack:
aload 1
instanceof org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter
ifeq 6
5: aload 0
aload 1
checkcast org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.abstractArrayAdapterEquals:(Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter;)Z
ireturn
6: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
checkcast java.util.List
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.arrayEqualsList:([Ljava/lang/Object;ILjava/util/List;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 7 1 that Ljava/lang/Object;
MethodParameters:
Name Flags
that
public boolean abstractArrayAdapterEquals(org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter<?>);
descriptor: (Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter;)Z
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.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 1
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
invokestatic java.util.Arrays.equals:([Ljava/lang/Object;[Ljava/lang/Object;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 list Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<*>;
Signature: (Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<*>;)Z
MethodParameters:
Name Flags
list
public int hashCode();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
invokestatic java.util.Arrays.hashCode:([Ljava/lang/Object;)I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T, ? super P>, );
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=7, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
dup
astore 6
arraylength
istore 5
iconst_0
istore 4
goto 4
StackMap locals: org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter org.eclipse.collections.api.block.procedure.Procedure2 java.lang.Object top int int java.lang.Object[]
StackMap stack:
1: aload 6
iload 4
aaload
astore 3
start local 3 2: aload 1
aload 3
aload 2
invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
end local 3 3: iinc 4 1
StackMap locals:
StackMap stack:
4: iload 4
iload 5
if_icmplt 1
5: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 6 1 procedure Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;
0 6 2 parameter TP;
2 3 3 each TT;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;TP;)V
MethodParameters:
Name Flags
procedure
parameter
public <P, R extends java.util.Collection<T>> R selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P, );
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
aload 3
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.selectWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
0 1 3 target TR;
Signature: <P:Ljava/lang/Object;R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;TR;)TR;
MethodParameters:
Name Flags
predicate
parameter
target
public <P, R extends java.util.Collection<T>> R rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P, );
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
aload 3
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.rejectWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
0 1 3 target TR;
Signature: <P:Ljava/lang/Object;R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;TR;)TR;
MethodParameters:
Name Flags
predicate
parameter
target
public <P, A> org.eclipse.collections.api.list.MutableList<A> collectWith(org.eclipse.collections.api.block.function.Function2<? super T, ? super P, ? extends A>, P);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.list.MutableList
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TA;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;A:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TA;>;TP;)Lorg/eclipse/collections/api/list/MutableList<TA;>;
MethodParameters:
Name Flags
function
parameter
public <P, A, R extends java.util.Collection<A>> R collectWith(org.eclipse.collections.api.block.function.Function2<? super T, ? super P, ? extends A>, P, );
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
aload 3
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.collectWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TA;>;
0 1 2 parameter TP;
0 1 3 target TR;
Signature: <P:Ljava/lang/Object;A:Ljava/lang/Object;R::Ljava/util/Collection<TA;>;>(Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TA;>;TP;TR;)TR;
MethodParameters:
Name Flags
function
parameter
target
public <IV, P> IV injectIntoWith(IV, org.eclipse.collections.api.block.function.Function3<? super IV, ? super T, ? super P, ? extends IV>, );
descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function3;Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 1
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 2
aload 3
invokestatic org.eclipse.collections.impl.utility.ArrayIterate.injectIntoWith:(Ljava/lang/Object;[Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function3;Ljava/lang/Object;)Ljava/lang/Object;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 injectValue TIV;
0 1 2 function Lorg/eclipse/collections/api/block/function/Function3<-TIV;-TT;-TP;+TIV;>;
0 1 3 parameter TP;
Signature: <IV:Ljava/lang/Object;P:Ljava/lang/Object;>(TIV;Lorg/eclipse/collections/api/block/function/Function3<-TIV;-TT;-TP;+TIV;>;TP;)TIV;
MethodParameters:
Name Flags
injectValue
function
parameter
public void forEach(int, int, org.eclipse.collections.api.block.procedure.Procedure<? super T>);
descriptor: (IILorg/eclipse/collections/api/block/procedure/Procedure;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: iload 1
iload 2
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
invokestatic org.eclipse.collections.impl.utility.ListIterate.rangeCheck:(III)V
1: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
iload 1
iload 2
aload 3
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.forEachWithoutChecks:([Ljava/lang/Object;IILorg/eclipse/collections/api/block/procedure/Procedure;)V
2: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 3 1 fromIndex I
0 3 2 toIndex I
0 3 3 procedure Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
Signature: (IILorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
MethodParameters:
Name Flags
fromIndex
toIndex
procedure
public <P> int countWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.countWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)I
MethodParameters:
Name Flags
predicate
parameter
public <P> boolean anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.anySatisfyWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Z
MethodParameters:
Name Flags
predicate
parameter
public <P> boolean allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.allSatisfyWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Z
MethodParameters:
Name Flags
predicate
parameter
public <P> boolean noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.noneSatisfyWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Z
MethodParameters:
Name Flags
predicate
parameter
public org.eclipse.collections.api.list.MutableList<T> distinct();
descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.distinct:([Ljava/lang/Object;I)Lorg/eclipse/collections/impl/list/mutable/FastList;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
Signature: ()Lorg/eclipse/collections/api/list/MutableList<TT;>;
public org.eclipse.collections.api.list.MutableList<T> distinct(org.eclipse.collections.api.block.HashingStrategy<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/HashingStrategy;)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.distinct:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/HashingStrategy;)Lorg/eclipse/collections/impl/list/mutable/FastList;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 hashingStrategy Lorg/eclipse/collections/api/block/HashingStrategy<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/HashingStrategy<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
MethodParameters:
Name Flags
hashingStrategy
public void appendString(java.lang.Appendable, java.lang.String, java.lang.String, java.lang.String);
descriptor: (Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=5, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 0
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
aload 0
getfield org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.items:[Ljava/lang/Object;
arraylength
aload 1
aload 2
aload 3
aload 4
invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.appendString:(Lorg/eclipse/collections/api/list/ListIterable;[Ljava/lang/Object;ILjava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
1: return
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 2 1 appendable Ljava/lang/Appendable;
0 2 2 start Ljava/lang/String;
0 2 3 separator Ljava/lang/String;
0 2 4 end Ljava/lang/String;
MethodParameters:
Name Flags
appendable
start
separator
end
public org.eclipse.collections.api.list.MutableList<T> take(int);
descriptor: (I)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokestatic org.eclipse.collections.impl.utility.internal.RandomAccessListIterate.take:(Ljava/util/List;I)Lorg/eclipse/collections/api/list/MutableList;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 count I
Signature: (I)Lorg/eclipse/collections/api/list/MutableList<TT;>;
MethodParameters:
Name Flags
count
public org.eclipse.collections.api.list.MutableList<T> drop(int);
descriptor: (I)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokestatic org.eclipse.collections.impl.utility.internal.RandomAccessListIterate.drop:(Ljava/util/List;I)Lorg/eclipse/collections/api/list/MutableList;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;
0 1 1 count I
Signature: (I)Lorg/eclipse/collections/api/list/MutableList<TT;>;
MethodParameters:
Name Flags
count
public org.eclipse.collections.api.ordered.ReversibleIterable take(int);
descriptor: (I)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.take:(I)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.ListIterable take(int);
descriptor: (I)Lorg/eclipse/collections/api/list/ListIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.take:(I)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable flatCollect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)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.Function
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.MutableCollection flatCollect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/collection/MutableCollection;
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.Function
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable flatCollect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)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.Function
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.ReversibleIterable flatCollect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
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.Function
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.ListIterable flatCollect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ListIterable;
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.Function
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.MutableCollection collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.ReversibleIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.ListIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ListIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.ListIterable distinct(org.eclipse.collections.api.block.HashingStrategy);
descriptor: (Lorg/eclipse/collections/api/block/HashingStrategy;)Lorg/eclipse/collections/api/list/ListIterable;
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.HashingStrategy
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.distinct:(Lorg/eclipse/collections/api/block/HashingStrategy;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable distinct();
descriptor: ()Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.distinct:()Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.ReversibleIterable distinct();
descriptor: ()Lorg/eclipse/collections/api/ordered/ReversibleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.distinct:()Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.ListIterable distinct();
descriptor: ()Lorg/eclipse/collections/api/list/ListIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.distinct:()Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)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.Function
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.MutableCollection collect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/collection/MutableCollection;
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.Function
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable collect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)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.Function
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.ReversibleIterable collect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
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.Function
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.ListIterable collect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ListIterable;
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.Function
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public java.util.List subList(int, int);
descriptor: (II)Ljava/util/List;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
iload 1
iload 2
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.subList:(II)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.ListIterable subList(int, int);
descriptor: (II)Lorg/eclipse/collections/api/list/ListIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
iload 1
iload 2
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.subList:(II)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.ReversibleIterable drop(int);
descriptor: (I)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.drop:(I)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.ListIterable drop(int);
descriptor: (I)Lorg/eclipse/collections/api/list/ListIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.drop:(I)Lorg/eclipse/collections/api/list/MutableList;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/list/mutable/AbstractMutableList<TT;>;Ljava/util/RandomAccess;
SourceFile: "AbstractArrayAdapter.java"