public ImmutableIntStack pop()
{
IntArrayList newDelegate = IntArrayList.newList(this.delegate);
newDelegate.removeAtIndex(this.delegate.size() - 1);
return IntStacks.immutable.with(newDelegate.toArray());
}
public ImmutableIntStack pop(int count)
{
this.checkNegativeCount(count);