public interface MutableCharStack extends CharStack
| Modifier and Type | Method and Description |
|---|---|
MutableCharStack |
asSynchronized() |
MutableCharStack |
asUnmodifiable() |
void |
clear()
Clears the Stack
|
<V> MutableStack<V> |
collect(CharToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
char |
pop()
Removes and returns the top element of the stack.
|
CharList |
pop(int count)
Removes and returns a CharList of the number of elements specified by the count, beginning with the top of the stack.
|
void |
push(char item)
Adds an item to the top of the stack.
|
MutableCharStack |
reject(CharPredicate predicate)
Returns a new CharIterable with all of the elements in the CharIterable that
return false for the specified predicate.
|
MutableCharStack |
select(CharPredicate predicate)
Returns a new CharIterable with all of the elements in the CharIterable that
return true for the specified predicate.
|
default MutableCharStack |
tap(CharProcedure procedure) |
equals, hashCode, peek, peek, peekAt, toImmutableforEachWithIndex, getFirst, indexOf, injectIntoWithIndexallSatisfy, anySatisfy, asLazy, average, averageIfEmpty, charIterator, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringvoid push(char item)
char pop()
CharList pop(int count)
void clear()
MutableCharStack select(CharPredicate predicate)
CharIterableselect in interface CharIterableselect in interface CharStackselect in interface OrderedCharIterableMutableCharStack reject(CharPredicate predicate)
CharIterablereject in interface CharIterablereject in interface CharStackreject in interface OrderedCharIterabledefault MutableCharStack tap(CharProcedure procedure)
tap in interface CharIterabletap in interface CharStack<V> MutableStack<V> collect(CharToObjectFunction<? extends V> function)
CharIterablecollect in interface CharIterablecollect in interface CharStackcollect in interface OrderedCharIterableMutableCharStack asUnmodifiable()
MutableCharStack asSynchronized()
Copyright © 2004–2017. All rights reserved.