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