All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gs.collections.impl.stack.mutable.ArrayStack Maven / Gradle / Ivy

Go to download

GS Collections is a collections framework for Java. It has JDK-compatible List, Set and Map implementations with a rich API and set of utility classes that work with any JDK compatible Collections, Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework.

There is a newer version: 7.0.3
Show newest version
/*
 * Copyright 2014 Goldman Sachs.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.gs.collections.impl.stack.mutable;

import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Collection;
import java.util.Comparator;
import java.util.EmptyStackException;
import java.util.Iterator;

import com.gs.collections.api.LazyIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.MutableBag;
import com.gs.collections.api.bag.sorted.MutableSortedBag;
import com.gs.collections.api.block.function.Function;
import com.gs.collections.api.block.function.Function0;
import com.gs.collections.api.block.function.Function2;
import com.gs.collections.api.block.function.primitive.BooleanFunction;
import com.gs.collections.api.block.function.primitive.ByteFunction;
import com.gs.collections.api.block.function.primitive.CharFunction;
import com.gs.collections.api.block.function.primitive.DoubleFunction;
import com.gs.collections.api.block.function.primitive.DoubleObjectToDoubleFunction;
import com.gs.collections.api.block.function.primitive.FloatFunction;
import com.gs.collections.api.block.function.primitive.FloatObjectToFloatFunction;
import com.gs.collections.api.block.function.primitive.IntFunction;
import com.gs.collections.api.block.function.primitive.IntObjectToIntFunction;
import com.gs.collections.api.block.function.primitive.LongFunction;
import com.gs.collections.api.block.function.primitive.LongObjectToLongFunction;
import com.gs.collections.api.block.function.primitive.ShortFunction;
import com.gs.collections.api.block.predicate.Predicate;
import com.gs.collections.api.block.predicate.Predicate2;
import com.gs.collections.api.block.procedure.Procedure;
import com.gs.collections.api.block.procedure.Procedure2;
import com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure;
import com.gs.collections.api.collection.primitive.MutableBooleanCollection;
import com.gs.collections.api.collection.primitive.MutableByteCollection;
import com.gs.collections.api.collection.primitive.MutableCharCollection;
import com.gs.collections.api.collection.primitive.MutableDoubleCollection;
import com.gs.collections.api.collection.primitive.MutableFloatCollection;
import com.gs.collections.api.collection.primitive.MutableIntCollection;
import com.gs.collections.api.collection.primitive.MutableLongCollection;
import com.gs.collections.api.collection.primitive.MutableShortCollection;
import com.gs.collections.api.list.ListIterable;
import com.gs.collections.api.list.MutableList;
import com.gs.collections.api.map.MutableMap;
import com.gs.collections.api.map.primitive.ObjectDoubleMap;
import com.gs.collections.api.map.primitive.ObjectLongMap;
import com.gs.collections.api.map.sorted.MutableSortedMap;
import com.gs.collections.api.multimap.MutableMultimap;
import com.gs.collections.api.multimap.list.MutableListMultimap;
import com.gs.collections.api.partition.stack.PartitionMutableStack;
import com.gs.collections.api.set.MutableSet;
import com.gs.collections.api.set.sorted.MutableSortedSet;
import com.gs.collections.api.stack.ImmutableStack;
import com.gs.collections.api.stack.MutableStack;
import com.gs.collections.api.stack.StackIterable;
import com.gs.collections.api.stack.primitive.MutableBooleanStack;
import com.gs.collections.api.stack.primitive.MutableByteStack;
import com.gs.collections.api.stack.primitive.MutableCharStack;
import com.gs.collections.api.stack.primitive.MutableDoubleStack;
import com.gs.collections.api.stack.primitive.MutableFloatStack;
import com.gs.collections.api.stack.primitive.MutableIntStack;
import com.gs.collections.api.stack.primitive.MutableLongStack;
import com.gs.collections.api.stack.primitive.MutableShortStack;
import com.gs.collections.api.tuple.Pair;
import com.gs.collections.impl.block.factory.Comparators;
import com.gs.collections.impl.block.factory.Predicates;
import com.gs.collections.impl.block.procedure.MutatingAggregationProcedure;
import com.gs.collections.impl.block.procedure.NonMutatingAggregationProcedure;
import com.gs.collections.impl.factory.Stacks;
import com.gs.collections.impl.list.Interval;
import com.gs.collections.impl.list.mutable.FastList;
import com.gs.collections.impl.map.mutable.UnifiedMap;
import com.gs.collections.impl.multimap.list.FastListMultimap;
import com.gs.collections.impl.partition.stack.PartitionArrayStack;
import com.gs.collections.impl.stack.mutable.primitive.BooleanArrayStack;
import com.gs.collections.impl.stack.mutable.primitive.ByteArrayStack;
import com.gs.collections.impl.stack.mutable.primitive.CharArrayStack;
import com.gs.collections.impl.stack.mutable.primitive.DoubleArrayStack;
import com.gs.collections.impl.stack.mutable.primitive.FloatArrayStack;
import com.gs.collections.impl.stack.mutable.primitive.IntArrayStack;
import com.gs.collections.impl.stack.mutable.primitive.LongArrayStack;
import com.gs.collections.impl.stack.mutable.primitive.ShortArrayStack;
import com.gs.collections.impl.utility.LazyIterate;

/**
 * ArrayStack is a MutableStack which contains a FastList of data. ArrayStack iterates from top to bottom (LIFO order).
 * It behaves like FastList in terms of runtime complexity. The method push() is amortized constant time like
 * FastList.add(). The backing data structure grows and shrinks by 50% at a time, and size is constant. ArrayStack does
 * not extend Vector, as does the Java Stack, which was one of the reasons to create this data structure.
 */
public class ArrayStack implements MutableStack, Externalizable
{
    private static final long serialVersionUID = 1L;
    private FastList delegate;

    public ArrayStack()
    {
        this.delegate = FastList.newList();
    }

    public ArrayStack(int initialCapacity)
    {
        this.delegate = FastList.newList(initialCapacity);
    }

    public ArrayStack(Iterable items)
    {
        this.delegate = FastList.newList(items);
    }

    public ArrayStack(T... items)
    {
        this.delegate = FastList.wrapCopy(items);
    }

    public static  ArrayStack newStack()
    {
        return new ArrayStack();
    }

    public static  ArrayStack newStack(Iterable items)
    {
        return new ArrayStack((Iterable) items);
    }

    public static  ArrayStack newStackWith(T... items)
    {
        return new ArrayStack(items);
    }

    public static  ArrayStack newStackFromTopToBottom(T... items)
    {
        ArrayStack stack = new ArrayStack(items.length);
        for (int i = items.length - 1; i >= 0; i--)
        {
            stack.push(items[i]);
        }
        return stack;
    }

    public static  ArrayStack newStackFromTopToBottom(Iterable items)
    {
        ArrayStack stack = ArrayStack.newStack();
        stack.delegate = FastList.newList(items).reverseThis();
        return stack;
    }

    public void push(T item)
    {
        this.delegate.add(item);
    }

    public T pop()
    {
        this.checkEmptyStack();
        return this.delegate.remove(this.delegate.size() - 1);
    }

    private void checkEmptyStack()
    {
        if (this.delegate.isEmpty())
        {
            throw new EmptyStackException();
        }
    }

    public ListIterable pop(int count)
    {
        this.checkNegativeCount(count);
        MutableList result = FastList.newList(count);
        if (this.checkZeroCount(count))
        {
            return result;
        }
        this.checkEmptyStack();
        this.checkSizeLessThanCount(count);
        while (count > 0)
        {
            result.add(this.pop());
            count--;
        }
        return result;
    }

    public > R pop(int count, R targetCollection)
    {
        this.checkNegativeCount(count);
        if (this.checkZeroCount(count))
        {
            return targetCollection;
        }
        this.checkEmptyStack();
        this.checkSizeLessThanCount(count);
        while (count > 0)
        {
            targetCollection.add(this.pop());
            count--;
        }
        return targetCollection;
    }

    public > R pop(int count, R targetStack)
    {
        this.checkNegativeCount(count);
        if (this.checkZeroCount(count))
        {
            return targetStack;
        }
        this.checkEmptyStack();
        this.checkSizeLessThanCount(count);
        while (count > 0)
        {
            targetStack.push(this.pop());
            count--;
        }
        return targetStack;
    }

    public void clear()
    {
        this.delegate.clear();
    }

    private boolean checkZeroCount(int count)
    {
        return count == 0;
    }

    public T peek()
    {
        this.checkEmptyStack();
        return this.delegate.getLast();
    }

    public ListIterable peek(int count)
    {
        this.checkNegativeCount(count);
        if (this.checkZeroCount(count))
        {
            return FastList.newList();
        }
        this.checkEmptyStack();
        this.checkSizeLessThanCount(count);

        FastList result = FastList.newList(count);
        for (int i = 0; i < count; i++)
        {
            result.add(this.delegate.get(this.delegate.size() - (i + 1)));
        }
        return result;
    }

    public T peekAt(int index)
    {
        this.checkNegativeCount(index);
        this.checkEmptyStack();
        this.checkSizeLessThanOrEqualToIndex(index);
        return this.delegate.get(this.delegate.size() - 1 - index);
    }

    public int size()
    {
        return this.delegate.size();
    }

    public boolean isEmpty()
    {
        return this.delegate.isEmpty();
    }

    public boolean notEmpty()
    {
        return this.delegate.notEmpty();
    }

    public T getFirst()
    {
        return this.peek();
    }

    public T getLast()
    {
        throw new UnsupportedOperationException("Cannot call getLast() on " + this.getClass().getSimpleName());
    }

    public boolean contains(Object object)
    {
        return this.delegate.asReversed().contains(object);
    }

    public boolean containsAllIterable(Iterable source)
    {
        return this.delegate.asReversed().containsAllIterable(source);
    }

    public boolean containsAll(Collection source)
    {
        return this.delegate.asReversed().containsAll(source);
    }

    public boolean containsAllArguments(Object... elements)
    {
        return this.delegate.asReversed().containsAllArguments(elements);
    }

    public  ArrayStack collect(Function function)
    {
        return ArrayStack.newStackFromTopToBottom(this.delegate.asReversed().collect(function));
    }

    public MutableBooleanStack collectBoolean(BooleanFunction booleanFunction)
    {
        return BooleanArrayStack.newStackFromTopToBottom(this.delegate.asReversed().collectBoolean(booleanFunction));
    }

    public  R collectBoolean(BooleanFunction booleanFunction, R target)
    {
        return this.delegate.asReversed().collectBoolean(booleanFunction, target);
    }

    public MutableByteStack collectByte(ByteFunction byteFunction)
    {
        return ByteArrayStack.newStackFromTopToBottom(this.delegate.asReversed().collectByte(byteFunction));
    }

    public  R collectByte(ByteFunction byteFunction, R target)
    {
        return this.delegate.asReversed().collectByte(byteFunction, target);
    }

    public MutableCharStack collectChar(CharFunction charFunction)
    {
        return CharArrayStack.newStackFromTopToBottom(this.delegate.asReversed().collectChar(charFunction));
    }

    public  R collectChar(CharFunction charFunction, R target)
    {
        return this.delegate.asReversed().collectChar(charFunction, target);
    }

    public MutableDoubleStack collectDouble(DoubleFunction doubleFunction)
    {
        return DoubleArrayStack.newStackFromTopToBottom(this.delegate.asReversed().collectDouble(doubleFunction));
    }

    public  R collectDouble(DoubleFunction doubleFunction, R target)
    {
        return this.delegate.asReversed().collectDouble(doubleFunction, target);
    }

    public MutableFloatStack collectFloat(FloatFunction floatFunction)
    {
        return FloatArrayStack.newStackFromTopToBottom(this.delegate.asReversed().collectFloat(floatFunction));
    }

    public  R collectFloat(FloatFunction floatFunction, R target)
    {
        return this.delegate.asReversed().collectFloat(floatFunction, target);
    }

    public MutableIntStack collectInt(IntFunction intFunction)
    {
        return IntArrayStack.newStackFromTopToBottom(this.delegate.asReversed().collectInt(intFunction));
    }

    public  R collectInt(IntFunction intFunction, R target)
    {
        return this.delegate.asReversed().collectInt(intFunction, target);
    }

    public MutableLongStack collectLong(LongFunction longFunction)
    {
        return LongArrayStack.newStackFromTopToBottom(this.delegate.asReversed().collectLong(longFunction));
    }

    public  R collectLong(LongFunction longFunction, R target)
    {
        return this.delegate.asReversed().collectLong(longFunction, target);
    }

    public MutableShortStack collectShort(ShortFunction shortFunction)
    {
        return ShortArrayStack.newStackFromTopToBottom(this.delegate.asReversed().collectShort(shortFunction));
    }

    public  R collectShort(ShortFunction shortFunction, R target)
    {
        return this.delegate.asReversed().collectShort(shortFunction, target);
    }

    public > R collect(Function function, R target)
    {
        return this.delegate.asReversed().collect(function, target);
    }

    public  ArrayStack collectWith(Function2 function, P parameter)
    {
        return ArrayStack.newStackFromTopToBottom(this.delegate.asReversed().collectWith(function, parameter).toList());
    }

    public  ArrayStack collectIf(Predicate predicate, Function function)
    {
        return ArrayStack.newStackFromTopToBottom(this.delegate.asReversed().collectIf(predicate, function).toList());
    }

    public > R collectIf(Predicate predicate, Function function, R target)
    {
        return this.delegate.asReversed().collectIf(predicate, function, target);
    }

    public > R collectWith(Function2 function, P parameter, R targetCollection)
    {
        return this.delegate.asReversed().collectWith(function, parameter, targetCollection);
    }

    public  ArrayStack flatCollect(Function> function)
    {
        return ArrayStack.newStackFromTopToBottom(this.delegate.asReversed().flatCollect(function).toList());
    }

    public > R flatCollect(Function> function, R target)
    {
        return this.delegate.asReversed().flatCollect(function, target);
    }

    public ArrayStack select(Predicate predicate)
    {
        return ArrayStack.newStackFromTopToBottom(this.delegate.asReversed().select(predicate).toList());
    }

    public 

ArrayStack selectWith(Predicate2 predicate, P parameter) { return this.select(Predicates.bind(predicate, parameter)); } public > R select(Predicate predicate, R target) { return this.delegate.asReversed().select(predicate, target); } public ArrayStack selectInstancesOf(Class clazz) { return ArrayStack.newStackFromTopToBottom(this.delegate.asReversed().selectInstancesOf(clazz).toList()); } public > R selectWith(Predicate2 predicate, P parameter, R targetCollection) { return this.delegate.asReversed().selectWith(predicate, parameter, targetCollection); } public ArrayStack reject(Predicate predicate) { return ArrayStack.newStackFromTopToBottom(this.delegate.asReversed().reject(predicate).toList()); } public > R reject(Predicate predicate, R target) { return this.delegate.asReversed().reject(predicate, target); } public

ArrayStack rejectWith(Predicate2 predicate, P parameter) { return this.reject(Predicates.bind(predicate, parameter)); } public > R rejectWith(Predicate2 predicate, P parameter, R targetCollection) { return this.delegate.asReversed().rejectWith(predicate, parameter, targetCollection); } public T detect(Predicate predicate) { return this.delegate.asReversed().detect(predicate); } public

T detectWith(Predicate2 predicate, P parameter) { return this.delegate.asReversed().detectWith(predicate, parameter); } public T detectIfNone(Predicate predicate, Function0 function) { return this.delegate.asReversed().detectIfNone(predicate, function); } public

T detectWithIfNone(Predicate2 predicate, P parameter, Function0 function) { return this.delegate.asReversed().detectWithIfNone(predicate, parameter, function); } public PartitionMutableStack partition(Predicate predicate) { PartitionArrayStack partitionMutableStack = new PartitionArrayStack(); this.delegate.asReversed().forEach(new PartitionArrayStack.PartitionProcedure(predicate, partitionMutableStack)); return partitionMutableStack; } public

PartitionMutableStack partitionWith(Predicate2 predicate, P parameter) { PartitionArrayStack partitionMutableStack = new PartitionArrayStack(); this.delegate.asReversed().forEach(new PartitionArrayStack.PartitionPredicate2Procedure(predicate, parameter, partitionMutableStack)); return partitionMutableStack; } public ArrayStack> zip(Iterable that) { return ArrayStack.newStackFromTopToBottom(this.delegate.asReversed().zip(that).toList()); } public >> R zip(Iterable that, R target) { return this.delegate.asReversed().zip(that, target); } public ArrayStack> zipWithIndex() { int maxIndex = this.delegate.size() - 1; Interval indicies = Interval.fromTo(0, maxIndex); return ArrayStack.newStackFromTopToBottom(this.delegate.asReversed().zip(indicies).toList()); } public >> R zipWithIndex(R target) { return this.delegate.asReversed().zipWithIndex(target); } public int count(Predicate predicate) { return this.delegate.asReversed().count(predicate); } public

int countWith(Predicate2 predicate, P parameter) { return this.delegate.asReversed().countWith(predicate, parameter); } public boolean anySatisfy(Predicate predicate) { return this.delegate.asReversed().anySatisfy(predicate); } public

boolean anySatisfyWith(Predicate2 predicate, P parameter) { return this.delegate.asReversed().anySatisfyWith(predicate, parameter); } public boolean allSatisfy(Predicate predicate) { return this.delegate.asReversed().allSatisfy(predicate); } public

boolean allSatisfyWith(Predicate2 predicate, P parameter) { return this.delegate.asReversed().allSatisfyWith(predicate, parameter); } public boolean noneSatisfy(Predicate predicate) { return this.delegate.asReversed().noneSatisfy(predicate); } public

boolean noneSatisfyWith(Predicate2 predicate, P parameter) { return this.delegate.asReversed().noneSatisfyWith(predicate, parameter); } public IV injectInto(IV injectedValue, Function2 function) { return this.delegate.asReversed().injectInto(injectedValue, function); } public int injectInto(int injectedValue, IntObjectToIntFunction intObjectToIntFunction) { return this.delegate.asReversed().injectInto(injectedValue, intObjectToIntFunction); } public long injectInto(long injectedValue, LongObjectToLongFunction longObjectToLongFunction) { return this.delegate.asReversed().injectInto(injectedValue, longObjectToLongFunction); } public double injectInto(double injectedValue, DoubleObjectToDoubleFunction doubleObjectToDoubleFunction) { return this.delegate.asReversed().injectInto(injectedValue, doubleObjectToDoubleFunction); } public float injectInto(float injectedValue, FloatObjectToFloatFunction floatObjectToFloatFunction) { return this.delegate.asReversed().injectInto(injectedValue, floatObjectToFloatFunction); } public long sumOfInt(IntFunction intFunction) { return this.delegate.asReversed().sumOfInt(intFunction); } public double sumOfFloat(FloatFunction floatFunction) { return this.delegate.asReversed().sumOfFloat(floatFunction); } public long sumOfLong(LongFunction longFunction) { return this.delegate.asReversed().sumOfLong(longFunction); } public double sumOfDouble(DoubleFunction doubleFunction) { return this.delegate.asReversed().sumOfDouble(doubleFunction); } public ObjectLongMap sumByInt(Function groupBy, IntFunction function) { return this.delegate.asReversed().sumByInt(groupBy, function); } public ObjectDoubleMap sumByFloat(Function groupBy, FloatFunction function) { return this.delegate.asReversed().sumByFloat(groupBy, function); } public ObjectLongMap sumByLong(Function groupBy, LongFunction function) { return this.delegate.asReversed().sumByLong(groupBy, function); } public ObjectDoubleMap sumByDouble(Function groupBy, DoubleFunction function) { return this.delegate.asReversed().sumByDouble(groupBy, function); } public T max() { return this.delegate.asReversed().max(); } public T max(Comparator comparator) { return this.delegate.asReversed().max(comparator); } public > T maxBy(Function function) { return this.delegate.asReversed().maxBy(function); } public T min() { return this.delegate.asReversed().min(); } public T min(Comparator comparator) { return this.delegate.asReversed().min(comparator); } public > T minBy(Function function) { return this.delegate.asReversed().toList().minBy(function); } public String makeString() { return this.delegate.asReversed().makeString(); } public String makeString(String separator) { return this.delegate.asReversed().makeString(separator); } public String makeString(String start, String separator, String end) { return this.delegate.asReversed().makeString(start, separator, end); } public void appendString(Appendable appendable) { this.delegate.asReversed().appendString(appendable); } public void appendString(Appendable appendable, String separator) { this.delegate.asReversed().appendString(appendable, separator); } public void appendString(Appendable appendable, String start, String separator, String end) { this.delegate.asReversed().appendString(appendable, start, separator, end); } public MutableListMultimap groupBy(Function function) { return this.groupBy(function, FastListMultimap.newMultimap()); } public > R groupBy(Function function, R target) { return this.delegate.asReversed().groupBy(function, target); } public MutableListMultimap groupByEach(Function> function) { return this.groupByEach(function, FastListMultimap.newMultimap()); } public > R groupByEach(Function> function, R target) { return this.delegate.asReversed().groupByEach(function, target); } public MutableMap groupByUniqueKey(Function function) { return this.groupByUniqueKey(function, UnifiedMap.newMap()); } public > R groupByUniqueKey(Function function, R target) { return this.delegate.asReversed().groupByUniqueKey(function, target); } public RichIterable> chunk(int size) { return this.delegate.asReversed().chunk(size); } public ArrayStack tap(Procedure procedure) { this.forEach(procedure); return this; } public void forEach(Procedure procedure) { this.each(procedure); } public void each(Procedure procedure) { this.delegate.reverseForEach(procedure); } public

void forEachWith(Procedure2 procedure, P parameter) { this.delegate.asReversed().forEachWith(procedure, parameter); } public void forEachWithIndex(ObjectIntProcedure objectIntProcedure) { this.delegate.asReversed().forEachWithIndex(objectIntProcedure); } public MutableList toList() { return this.delegate.asReversed().toList(); } public MutableList toSortedList() { return this.delegate.asReversed().toSortedList(); } public MutableList toSortedList(Comparator comparator) { return this.delegate.asReversed().toSortedList(comparator); } public > MutableList toSortedListBy(Function function) { return this.delegate.asReversed().toSortedListBy(function); } public MutableSet toSet() { return this.delegate.asReversed().toSet(); } public MutableSortedSet toSortedSet() { return this.delegate.asReversed().toSortedSet(); } public MutableSortedSet toSortedSet(Comparator comparator) { return this.delegate.asReversed().toSortedSet(comparator); } public MutableStack toStack() { return ArrayStack.newStackFromTopToBottom(this); } public ImmutableStack toImmutable() { return Stacks.immutable.withAll(this.delegate); } public > MutableSortedSet toSortedSetBy(Function function) { return this.delegate.asReversed().toSortedSetBy(function); } public MutableBag toBag() { return this.delegate.asReversed().toBag(); } public MutableSortedBag toSortedBag() { return this.delegate.asReversed().toSortedBag(); } public MutableSortedBag toSortedBag(Comparator comparator) { return this.delegate.asReversed().toSortedBag(comparator); } public > MutableSortedBag toSortedBagBy(Function function) { return this.delegate.asReversed().toSortedBagBy(function); } public MutableMap toMap(Function keyFunction, Function valueFunction) { return this.delegate.asReversed().toMap(keyFunction, valueFunction); } public MutableSortedMap toSortedMap(Function keyFunction, Function valueFunction) { return this.delegate.asReversed().toSortedMap(keyFunction, valueFunction); } public MutableSortedMap toSortedMap(Comparator comparator, Function keyFunction, Function valueFunction) { return this.delegate.asReversed().toSortedMap(comparator, keyFunction, valueFunction); } public LazyIterable asLazy() { return LazyIterate.adapt(this); } public MutableStack asUnmodifiable() { return UnmodifiableStack.of(this); } public MutableStack asSynchronized() { return SynchronizedStack.of(this); } public Object[] toArray() { return this.delegate.asReversed().toArray(); } public T[] toArray(T[] a) { return this.delegate.asReversed().toArray(a); } public Iterator iterator() { return this.delegate.asReversed().iterator(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof StackIterable)) { return false; } StackIterable that = (StackIterable) o; if (that instanceof ArrayStack) { return this.delegate.equals(((ArrayStack) that).delegate); } Iterator thisIterator = this.iterator(); Iterator thatIterator = that.iterator(); while (thisIterator.hasNext() && thatIterator.hasNext()) { if (!Comparators.nullSafeEquals(thisIterator.next(), thatIterator.next())) { return false; } } return !thisIterator.hasNext() && !thatIterator.hasNext(); } @Override public String toString() { return this.delegate.asReversed().makeString("[", ", ", "]"); } @Override public int hashCode() { int hashCode = 1; for (int i = this.delegate.size() - 1; i >= 0; i--) { T each = this.delegate.get(i); hashCode = 31 * hashCode + (each == null ? 0 : each.hashCode()); } return hashCode; } public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(this.size()); for (T each : this.delegate.asReversed()) { out.writeObject(each); } } public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { int size = in.readInt(); T[] array = (T[]) new Object[size]; for (int i = size - 1; i >= 0; i--) { array[i] = (T) in.readObject(); } this.delegate = FastList.newListWith(array); } private void checkSizeLessThanCount(int count) { if (this.delegate.size() < count) { throw new IllegalArgumentException("Count must be less than size: Count = " + count + " Size = " + this.delegate.size()); } } private void checkSizeLessThanOrEqualToIndex(int index) { if (this.delegate.size() <= index) { throw new IllegalArgumentException("Count must be less than size: Count = " + index + " Size = " + this.delegate.size()); } } private void checkNegativeCount(int count) { if (count < 0) { throw new IllegalArgumentException("Count must be positive but was " + count); } } public MutableMap aggregateInPlaceBy(Function groupBy, Function0 zeroValueFactory, Procedure2 mutatingAggregator) { MutableMap map = UnifiedMap.newMap(); this.forEach(new MutatingAggregationProcedure(map, groupBy, zeroValueFactory, mutatingAggregator)); return map; } public MutableMap aggregateBy(Function groupBy, Function0 zeroValueFactory, Function2 nonMutatingAggregator) { MutableMap map = UnifiedMap.newMap(); this.forEach(new NonMutatingAggregationProcedure(map, groupBy, zeroValueFactory, nonMutatingAggregator)); return map; } }