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